17 lines
546 B
Plaintext
17 lines
546 B
Plaintext
<turbo-frame id="<%= dom_id(task) %>">
|
|
<li>
|
|
<%= task.title %> (<%= task.status %>)
|
|
|
|
<%= link_to "Destroy", project_task_path(task.project, task), data: {
|
|
turbo_method: :delete,
|
|
turbo_confirm: "Are you sure?"
|
|
} %>
|
|
|
|
<% unless task.status == "completed" %>
|
|
<%= button_to "Complete", complete_project_task_path(task.project, task),
|
|
method: :patch,
|
|
form: { data: { turbo_frame: dom_id(task) } } %>
|
|
<% end %>
|
|
</li>
|
|
</turbo-frame>
|