mirror of
https://github.com/discourse/discourse.git
synced 2025-02-21 08:14:01 +08:00
17 lines
536 B
Handlebars
17 lines
536 B
Handlebars
<section class="d-dropdown" id="notifications-dropdown">
|
|
{{#loading-spinner condition=loadingNotifications}}
|
|
{{#if content}}
|
|
<ul>
|
|
{{#each n in model itemController="notification"}}
|
|
{{notification-item notification=n scope=n.scope}}
|
|
{{/each}}
|
|
<li class="read last">
|
|
<a href="/my/notifications">{{i18n 'notifications.more'}}…</a>
|
|
</li>
|
|
</ul>
|
|
{{else}}
|
|
<div class="none">{{i18n 'notifications.none'}}</div>
|
|
{{/if}}
|
|
{{/loading-spinner}}
|
|
</section>
|