This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/notifications.js.handlebars
2014-09-09 16:29:08 -07:00

19 lines
574 B
Handlebars

<section class="d-dropdown" id="notifications-dropdown">
{{#unless loadingNotifications}}
{{#if content}}
<ul>
{{#each itemController="notification"}}
{{notification-item notification=this scope=scope}}
{{/each}}
<li class="read last">
<a href="/my/notifications">{{i18n notifications.more}}&hellip;</a>
</li>
</ul>
{{else}}
<div class="none">{{i18n notifications.none}}</div>
{{/if}}
{{else}}
<div class='loading'><i class='fa fa-spinner fa-spin'></i></div>
{{/unless}}
</section>