friendica/view/templates/notifications.tpl

26 lines
629 B
Smarty
Raw Normal View History

2013-04-23 13:47:57 +02:00
<h1>{{$notif_header}}</h1>
{{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
2013-04-23 13:47:57 +02:00
<div class="notif-network-wrapper">
{{* The "show ignored" link *}}
{{if $notif_show_lnk}}<a href="{{$notif_show_lnk.href}}" id="notifications-show-hide-link">{{$notif_show_lnk.text}}</a>{{/if}}
{{* The notifications *}}
{{if $notif_content}}
{{foreach $notif_content as $notification}}
{{$notification nofilter}}
{{/foreach}}
{{/if}}
{{* If no notifications messages available *}}
{{if $notif_nocontent}}
<div class="notif_nocontent">{{$notif_nocontent}}</div>
{{/if}}
2016-08-01 23:04:41 +02:00
{{* The pager *}}
{{$notif_paginate nofilter}}
2013-04-23 13:47:57 +02:00
</div>