17 lines
600 B
HTML
17 lines
600 B
HTML
<div class="notification_box">
|
|
<div class="notification_header" onclick="toggleNotificationsPopover(this)">
|
|
<div class="natification_icon">
|
|
{% if hasNotifications %}
|
|
<div class="natification_red-dot"></div>
|
|
{% endif %}
|
|
<img src="{{'assets/images/svg/bell.svg'|theme}}" alt="bell">
|
|
</div>
|
|
<p>{{ 'auth.notifications'|_ }}</p>
|
|
</div>
|
|
|
|
<div class="notification_area" id="notification_area">
|
|
<div class="notifications-loading">
|
|
<span class="oc-loading"></span>
|
|
</div>
|
|
</div>
|
|
</div> |