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