17 lines
352 B
Plaintext
17 lines
352 B
Plaintext
.row
|
|
= link_to 'New', new_task_path(project: @project&.code)
|
|
|
|
- if @tasks.exists?
|
|
table
|
|
thead
|
|
tbody
|
|
- @tasks.each do |task|
|
|
- cache task do
|
|
tr
|
|
td= link_to task.full_number, task_path(task)
|
|
td= task.title
|
|
td
|
|
= link_to 'Edit', edit_task_path(task)
|
|
- else
|
|
p No tasks
|