23 lines
596 B
Plaintext
23 lines
596 B
Plaintext
<h1><%= @project.project_name %></h1>
|
|
<p><%= @project.description %></p>
|
|
|
|
<%= turbo_frame_tag "tasks" do %>
|
|
|
|
<ul id="active_tasks">
|
|
<% @project.tasks.where(status: %w[to_do in_progress]).each do |task| %>
|
|
<%= render partial: "tasks/task", locals: { task: task } %>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<ul id="done_tasks">
|
|
<% @project.tasks.where(status: "done").each do |task| %>
|
|
<%= render partial: "tasks/task", locals: { task: task } %>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<% end %>
|
|
|
|
<%= turbo_frame_tag "new_task" do %>
|
|
<%= render "tasks/form", project: @project, task: Task.new %>
|
|
<% end %>
|