Vulcan/packages/telescope-notifications/lib/client/templates/notifications_menu.html
Daniel Chcouri 2605dcb27c Convert translation keys format to tap:i18n standard
all_lower_cased_underscored_sperated names
2014-11-19 00:00:09 +08:00

19 lines
No EOL
657 B
HTML

<template name="notificationsMenu">
{{#if isLoggedIn}}
<div class="dropdown notifications-menu header-submodule">
<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>
{{#each notifications}}
{{> UI.dynamic template=notificationItem}}
{{/each}}
{{else}}
<li>No notifications</li>
{{/if}}
</ul>
</div>
</div>
{{/if}}
</template>