]> git.mxchange.org Git - friendica.git/blobdiff - view/templates/notifications.tpl
Merge pull request #5219 from annando/abstraction-2
[friendica.git] / view / templates / notifications.tpl
index 54f9de0c7a37385abcde31d023aaf5dce03d0ef6..f3068226c48c3707eb3d563afe9d92f15b75c7d7 100644 (file)
@@ -5,5 +5,21 @@
 {{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
 
 <div class="notif-network-wrapper">
-       {{$notif_content}}
+       {{* 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}}
+       {{/foreach}}
+       {{/if}}
+
+       {{* If no notifications messages available *}}
+       {{if $notif_nocontent}}
+               <div class="notif_nocontent">{{$notif_nocontent}}</div>
+       {{/if}}
+
+       {{* The pager *}}
+       {{$notif_paginate}}
 </div>