mirror of
https://github.com/discourse/discourse.git
synced 2025-02-01 04:53:01 +08:00
12 lines
478 B
Handlebars
12 lines
478 B
Handlebars
<span class='topic-post-badges'>
|
|
{{#if unread ~}}
|
|
<a href='{{url}}' class='badge badge-notification unread' title='{{view.unreadTitle}}'>{{unread}}</a>
|
|
{{/if }}
|
|
{{#if newPosts ~}}
|
|
<a href='{{url}}' class='badge badge-notification new-posts' title='{{view.newTitle}}'>{{newPosts}}</a>
|
|
{{/if}}
|
|
{{#if unseen ~}}
|
|
<a href='{{url}}' class='badge badge-notification new-topic' title='{{view.unseenTitle}}'>{{i18n 'filters.new.lower_title'}}</a>
|
|
{{/if}}
|
|
</span>
|