From 6d5293f85a38c6e42e5dc9b14d0ad9b3867bf9cb Mon Sep 17 00:00:00 2001 From: Pavel Gnedov Date: Wed, 1 Mar 2023 15:02:29 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D1=8F=D0=BA=D0=BE=D1=80=D0=B8=20=D0=BD=D0=B0=20?= =?UTF-8?q?=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- views/simple-kanban-board.hbs | 50 ++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/views/simple-kanban-board.hbs b/views/simple-kanban-board.hbs index c26e710..377130b 100644 --- a/views/simple-kanban-board.hbs +++ b/views/simple-kanban-board.hbs @@ -72,30 +72,32 @@ {{#each this}} -

{{this.metainfo.title}}

-
- {{#each this.data}} -
-
{{this.status}}
- {{#each this.issues}} -
- -
Исп.: {{this.current_user.name}}
-
Прогресс: {{this.done_ration}}
-
Трудозатраты: {{this.total_spent_hours}} / {{this.total_estimated_hours}}
- {{#if this.styledTags}} -
- Tags: - {{#each this.styledTags}} - {{this.tag}} - {{/each}} -
- {{/if}} -
- {{/each}} -
- {{/each}} -
+ {{#if this.metainfo}} +

{{this.metainfo.title}} #

+
+ {{#each this.data}} +
+
{{this.status}}
+ {{#each this.issues}} +
+ +
Исп.: {{this.current_user.name}}
+
Прогресс: {{this.done_ration}}
+
Трудозатраты: {{this.total_spent_hours}} / {{this.total_estimated_hours}}
+ {{#if this.styledTags}} +
+ Tags: + {{#each this.styledTags}} + {{this.tag}} + {{/each}} +
+ {{/if}} +
+ {{/each}} +
+ {{/each}} +
+ {{/if}} {{/each}} \ No newline at end of file