Vulcan/packages/telescope-notifications/lib/client/templates/notifications_menu.html

19 lines
668 B
HTML
Raw Normal View History

2014-08-20 17:03:54 +09:00
<template name="notificationsMenu">
{{#if isLoggedIn}}
2014-08-20 17:12:03 +09:00
<div class="dropdown notifications-menu header-submodule">
2014-08-20 17:03:54 +09:00
<a class="view dropdown-top-level" href="/">{{notification_count}}</a>
<div class="dropdown-menu">
<ul role="menu" aria-labelledby="dLabel">
{{#if hasNotifications}}
<li><a href="#" class="button mark-as-read">{{i18n "mark_as_read"}}</a></li>
2014-08-20 17:03:54 +09:00
{{#each notifications}}
{{> UI.dynamic template=notificationItem}}
{{/each}}
{{else}}
2014-11-20 14:55:34 +09:00
<li>{{i18n "no_notifications"}}</li>
2014-08-20 17:03:54 +09:00
{{/if}}
</ul>
</div>
</div>
{{/if}}
</template>