diff options
author | zotlabs <mike@macgirvin.com> | 2016-11-24 15:08:31 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-11-24 15:08:31 -0800 |
commit | 08a4bbb7d0b9c63ec97bb4f74e5842cc3ea8ee77 (patch) | |
tree | bd2b85d4a39c2d185d11d6c795a0a1a35e4abf99 /view/tpl/abook_edit.tpl | |
parent | 1596391a2ebcdfe9955e28b1db14adc05a6856da (diff) | |
download | volse-hubzilla-08a4bbb7d0b9c63ec97bb4f74e5842cc3ea8ee77.tar.gz volse-hubzilla-08a4bbb7d0b9c63ec97bb4f74e5842cc3ea8ee77.tar.bz2 volse-hubzilla-08a4bbb7d0b9c63ec97bb4f74e5842cc3ea8ee77.zip |
prev-next navigation for mod_connedit
Diffstat (limited to 'view/tpl/abook_edit.tpl')
-rwxr-xr-x | view/tpl/abook_edit.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl index 835948096..e7e5b928f 100755 --- a/view/tpl/abook_edit.tpl +++ b/view/tpl/abook_edit.tpl @@ -1,6 +1,16 @@ <div class="generic-content-wrapper"> <div class="section-title-wrapper"> {{if $notself}} + {{if $abook_prev || $abook_next}} + <div class="btn-group pull-right"> + {{if $abook_prev}} + <a href="connedit/{{$abook_prev}}" class="btn btn-default btn-xs" ><i class="fa fa-backward"></i></a> + {{/if}} + {{if $abook_next}} + <a href="connedit/{{$abook_next}}" class="btn btn-default btn-xs" ><i class="fa fa-forward"></i></a> + {{/if}} + </div> + {{/if}} <div class="dropdown pull-right"> <button id="connection-dropdown" class="btn btn-default btn-xs" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-caret-down"></i> {{$tools_label}} |