summaryrefslogtreecommitdiff
path: root/app/views/task_lists/show.html.erb
blob: 3d0a7848a61003f1969279bbd5d0537251574259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<h1><%= @task_list.name %></h1>

<%= form_for @task, url: [@task_list, @task] do |f| %>
  <%= f.label :name %>
  <%= f.text_field :name %>
  <%= f.submit "Create task" %>
<% end %>

<ul>
  <% @task_list.tasks.each do |task| %>
    <li><%= link_to task.name, task_list_task_path(@task_list, task) %></li>
  <% end %>
</ul>