<%= form_for @changeset, @action, fn f -> %>
<%= if @changeset.action do %>
something went wrong (see below)
<% end %>
<%= textarea f, :value, required: true, class: "textarea", placeholder: "task", autocomplete: "off" %>
<%= error_tag f, :value %>
<%= label f, :due_at, class: "label" do %>
due (YYYY-MM-DD HH:MM:SS)
<% end %>
<%= text_input f, :due_at, class: "input", placeholder: "YYYY-MM-DD HH:MM:SS", autocomplete: "off" %>
<%= error_tag f, :due_at %>
<%= label f, :finished_at, class: "label" do %>
<%= if is_nil(@task.finished_at) do %>
<%= checkbox f, :finished_at %>
<% else %>
<%= checkbox f, :finished_at, checked_value: @task.finished_at %>
<% end %>
finished
<% end %>
<%= error_tag f, :finished_at %>
<%= submit "save", class: "button is-dark" %>
<% end %>