Added task status to task show

This commit is contained in:
2025-11-01 23:55:21 +02:00
parent 74c22b7b3d
commit 37ac03191f
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -17,3 +17,8 @@
--background-color: var(--success-bg); --background-color: var(--success-bg);
} }
} }
.task-show-info {
display: flex;
flex-flow: row nowrap;
}
+3
View File
@@ -2,6 +2,9 @@ div
em= @task.full_number em= @task.full_number
h1= @task.title h1= @task.title
section.task-show-info
= task_status_selector @task, id: "task_status_selector_#{@task.id}", with_form: true
section= @task.description section= @task.description
section section