<%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %>
<%= if not is_nil(@task.due_at) do %>due: <%= @task.due_at %><% end %> <%= if is_nil(@task.filed_at) do %>unfiled<% end %>
<% end %>

<%= @task.value %>

updated: <%= @task.updated_at %> created: <%= @task.inserted_at %>

<%= link "edit", to: Routes.task_path(@conn, :edit, @task.id), class: "button is-dark" %>

<%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %>