diff options
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/app.tpl | 7 | ||||
-rw-r--r-- | view/tpl/apporder.tpl | 7 |
2 files changed, 13 insertions, 1 deletions
diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 28f28611e..f45510a58 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -25,6 +25,11 @@ {{/if}} </div> {{else}} +{{if $order}} +<a href="{{$hosturl}}appman/{{$app.guid}}/moveup"><i class="generic-icons-nav fa fa-fw fa-arrow-up"></i></a> +<a href="{{$hosturl}}appman/{{$app.guid}}/movedown"><i class="generic-icons-nav fa fa-fw fa-arrow-down"></i></a> +{{if $icon}}<i class="generic-icons-nav fa fa-fw fa-{{$icon}}"></i>{{else}}<img src="{{$app.photo}}" width="16" height="16" style="margin-right:9px;"/>{{/if}}{{$app.name}}<br> +{{else}} <a class="dropdown-item" href="{{$app.url}}">{{if $icon}}<i class="generic-icons-nav fa fa-fw fa-{{$icon}}"></i>{{else}}<img src="{{$app.photo}}" width="16" height="16" style="margin-right:9px;"/>{{/if}}{{$app.name}}</a> {{/if}} - +{{/if}} diff --git a/view/tpl/apporder.tpl b/view/tpl/apporder.tpl new file mode 100644 index 000000000..fdb726131 --- /dev/null +++ b/view/tpl/apporder.tpl @@ -0,0 +1,7 @@ +<h2>{{$header}}</h2> + +<div class="descriptive-text">{{$desc}}</div> +<br><br><br> +{{foreach $nav_apps as $nav_app}} +{{$nav_app}} +{{/foreach}} |