Show unread and new counts on sub-categories on /categories page

This commit is contained in:
Neil Lalonde 2014-01-27 14:41:47 -05:00
parent 0420df14f3
commit 78c7c03d26
1 changed files with 8 additions and 2 deletions

View File

@ -41,8 +41,14 @@
{{#if subcategories}}
<div class='subcategories'>
{{i18n categories.subcategories}}
{{#each subcategory in subcategories}}
{{categoryLink subcategory}}
{{#each subcategories}}
{{categoryLink this}}
{{#if unreadTopics}}
<a href={{unbound unreadUrl}} class='badge new-posts badge-notification' title='{{i18n topic.unread_topics count="unreadTopics"}}'>{{unbound unreadTopics}}</a>
{{/if}}
{{#if newTopics}}
<a href={{unbound newUrl}} class='badge new-posts badge-notification' title='{{i18n topic.new_topics count="newTopics"}}'>{{unbound newTopics}} <i class='fa fa-asterisk'></i></a>
{{/if}}
{{/each}}
</div>
{{/if}}