]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/templates/notifications.tpl
Merge pull request #6497 from MrPetovan/bug/6383-delivery-no-data
[friendica.git] / view / theme / frio / templates / notifications.tpl
index 3729e6f8c21baa369f0ec568f84004737ac56876..1be92c4b24e249876e2ff6dd49d85cc73d51209a 100644 (file)
@@ -1,3 +1,5 @@
+<script type="text/javascript" src="view/theme/frio/frameworks/jquery-color/jquery.color.js"></script>
+<script type="text/javascript" src="view/theme/frio/js/mod_notifications.js"></script>
 
 <div class="generic-page-wrapper">
        {{include file="section_title.tpl" title=$notif_header}}
@@ -6,13 +8,13 @@
 
        <div class="notif-network-wrapper">
                {{* The "show ignored" link *}}
-               {{if $notif_ignored_lnk}}{{$notif_ignored_lnk}}{{/if}}
+               {{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}}
                <ul class="notif-network-list media-list">
                {{foreach $notif_content as $notification}}
-                       <li>{{$notification}}</li>
+                       <li>{{$notification nofilter}}</li>
                {{/foreach}}
                </ul>
                {{/if}}
@@ -22,4 +24,7 @@
                <div class="notif_nocontent">{{$notif_nocontent}}</div>
                {{/if}}
        </div>
+
+       {{* The pager *}}
+       {{$notif_paginate nofilter}}
 </div>