1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00
documize/gui/app/templates/components/folder/document-categories.hbs
Harvey Kandola 5467771542 Display category names in documents list (space view)
We pre-fetch category names and attach them to documents.
2019-01-08 12:43:25 +00:00

8 lines
No EOL
188 B
Handlebars

{{#if categories}}
{{#each categories as |cat|}}
<div class="category">
<i class="dicon {{constants.Icon.Category}}" />
<div class="name">{{cat}}</div>
</div>
{{/each}}
{{/if}}