elixir_todo/lib/todo_web/live/todo_live.html.leex
2021-07-11 13:53:19 +02:00

22 lines
539 B
Text

<section >
<h1>Todo App</h1>
<form action="#" phx-submit="add">
<%= text_input :task, :title, placeholder: "What do you want to get done?" %>
<%= submit "Add", phx_disable_with: "Adding..." %>
</form>
<h2>Existing tasks</h2>
<article>
<ol>
<%= for task <- @all_tasks do %>
<div>
<%= checkbox(:task, :is_completed, phx_click: "toggle_completed", phx_value_id: task.id,value: task.is_completed) %>
<%= task.title %>
</div>
<% end %>
</ul>
</article>
</section>