Tasks display

This commit is contained in:
2025-07-12 17:50:56 +03:00
parent 42d45853ff
commit 4f5b9dcf89
12 changed files with 120 additions and 7 deletions
+14
View File
@@ -0,0 +1,14 @@
.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
- else
p No tasks
+5
View File
@@ -0,0 +1,5 @@
div
em= @task.full_number
h1= @task.title
section= @task.description