diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-10-04 13:37:17 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-10-04 13:37:17 +0200 |
commit | 295ed07d40ea330ef438d9cad8fe3af8fd265507 (patch) | |
tree | 0eadabe5ed19e68e2c570cb0fbbb7ba9a20e9863 /view/tpl | |
parent | fa93114804801bceabea06570e8eee602167600a (diff) | |
download | volse-hubzilla-295ed07d40ea330ef438d9cad8fe3af8fd265507.tar.gz volse-hubzilla-295ed07d40ea330ef438d9cad8fe3af8fd265507.tar.bz2 volse-hubzilla-295ed07d40ea330ef438d9cad8fe3af8fd265507.zip |
bring back notifications for account approvals
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/nav.tpl | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 72860aebe..0d0b0b600 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -128,7 +128,7 @@ {{/if}} {{if $nav.intros}} <li class="nav-item dropdown intro-button" style="display: none;"> - <a class="nav-link" href="{{$nav.intros.0}}" title="{{$nav.intros.3}}" id="{{$nav.intros.4}}" data-toggle="dropdown" rel="#nav-intros-menu"> + <a class="nav-link" href="#" title="{{$nav.intros.3}}" id="{{$nav.intros.4}}" data-toggle="dropdown" rel="#nav-intros-menu"> <i class="fa fa-fw fa-users"></i> <span class="badge badge-pill badge-danger intro-update"></span> </a> @@ -138,9 +138,20 @@ </div> </li> {{/if}} + {{if $nav.registrations}} + <li class="nav-item dropdown register-button" style="display: none;"> + <a class="nav-link" href="#" title="{{$nav.registrations.3}}" id="{{$nav.registrations.4}}" data-toggle="dropdown" rel="#nav-register-menu"> + <i class="fa fa-fw fa-user-o"></i> + <span class="badge badge-pill badge-danger register-update"></span> + </a> + <div id="nav-register-menu" class="dropdown-menu" rel="register"> + {{$emptynotifications}} + </div> + </li> + {{/if}} {{if $nav.notifications}} <li class="nav-item dropdown notify-button" style="display: none;"> - <a class="nav-link" href="{{$nav.notifications.0}}" title="{{$nav.notifications.1}}" id="{{$nav.notifications.4}}" data-toggle="dropdown" rel="#nav-notify-menu"> + <a class="nav-link" href="#" title="{{$nav.notifications.1}}" id="{{$nav.notifications.4}}" data-toggle="dropdown" rel="#nav-notify-menu"> <i class="fa fa-fw fa-exclamation"></i> <span class="badge badge-pill badge-danger notify-update"></span> </a> |