26 lines
594 B
Smarty
26 lines
594 B
Smarty
|
|
|
|
<h1>{{$header}}</h1>
|
|
|
|
{{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
|
|
|
|
<div class="notif-network-wrapper">
|
|
{{* The "show ignored" link *}}
|
|
{{if $showLink}}<a href="{{$showLink.href}}" id="notifications-show-hide-link">{{$showLink.text}}</a>{{/if}}
|
|
|
|
{{* The notifications *}}
|
|
{{if $notifications}}
|
|
{{foreach $notifications as $notification}}
|
|
{{$notification nofilter}}
|
|
{{/foreach}}
|
|
{{/if}}
|
|
|
|
{{* If no notifications messages available *}}
|
|
{{if $noContent}}
|
|
<div class="notification_nocontent">{{$noContent}}</div>
|
|
{{/if}}
|
|
|
|
{{* The pager *}}
|
|
{{$paginate nofilter}}
|
|
</div>
|