19 lines
588 B
Handlebars
19 lines
588 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 {{bind-attr href="currentUser.path"}}>{{i18n notifications.more}} …</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>
|