streams/view/tpl/notifications_widget.tpl

57 lines
1.9 KiB
Smarty
Raw Normal View History

<style>
.notification-content {
2017-10-10 14:03:59 +00:00
max-height: 70vh;
overflow: auto;
2017-10-08 20:21:19 +00:00
}
.notification-content.collapsing {
overflow: hidden;
}
.fs {
position: fixed;
top: 0px;
left: 0px;
2017-10-10 10:08:51 +00:00
padding: 4.5rem .5rem 1rem .5rem;
background-color: white;
width: 100%;
max-width: 100%;
2017-10-10 10:08:51 +00:00
height: 100%;
z-index: 1025;
2017-10-10 10:08:51 +00:00
overflow: auto;
}
2017-10-09 11:35:58 +00:00
2017-10-10 10:08:51 +00:00
#notifications {
margin-bottom: 1rem;
}
</style>
2017-10-10 10:08:51 +00:00
<div id="notifications_wrapper">
<div id="notifications" class="navbar-nav" data-children=".nav-item">
<div id="nav-notifications-template" rel="template">
2017-10-10 18:02:42 +00:00
<a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}">
2017-10-10 10:08:51 +00:00
<img class="menu-img-3" data-src="{1}">
<span class="contactname">{2}</span>
<span class="dropdown-sub-text">{3}<br>{4}</span>
</a>
</div>
{{foreach $notifications as $notification}}
<div class="collapse {{$notification.type}}-button">
<a class="list-group-item" href="#nav-{{$notification.type}}-menu" title="{{$notification.title}}" data-toggle="collapse" data-parent="#notifications" rel="#nav-{{$notification.type}}-menu">
<i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}}
<span class="float-right badge badge-{{$notification.severity}} {{$notification.type}}-update"></span>
</a>
<div id="nav-{{$notification.type}}-menu" class="collapse notification-content" rel="{{$notification.type}}">
{{if $notification.viewall}}
2017-10-10 18:02:42 +00:00
<a class="list-group-item" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}">{{$notification.viewall.label}}</a>
2017-10-10 10:08:51 +00:00
{{/if}}
{{if $notification.markall}}
2017-10-10 18:02:42 +00:00
<a class="list-group-item" id="nav-{{$notification.type}}-mark-all" href="{{$notification.markall.url}}" onclick="markRead('{{$notification.type}}'); return false;">{{$notification.markall.label}}</a>
2017-10-10 10:08:51 +00:00
{{/if}}
{{$loading}}
</div>
</div>
2017-10-10 10:08:51 +00:00
{{/foreach}}
2017-10-08 20:21:19 +00:00
</div>
</div>