diff options
Diffstat (limited to 'view/theme/redbasic/tpl/admin_summary.tpl')
-rwxr-xr-x | view/theme/redbasic/tpl/admin_summary.tpl | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/view/theme/redbasic/tpl/admin_summary.tpl b/view/theme/redbasic/tpl/admin_summary.tpl new file mode 100755 index 000000000..ca94b0ef7 --- /dev/null +++ b/view/theme/redbasic/tpl/admin_summary.tpl @@ -0,0 +1,43 @@ +<div class="generic-content-wrapper-styled" id='adminpage'> + <h1>{{$title}} - {{$page}}</h1> +{{if $adminalertmsg}} + <p class="alert alert-warning" role="alert">{{$adminalertmsg}}</p> +{{/if}} +{{if $upgrade}} + <p class="alert alert-warning" role="alert">{{$upgrade}}</p> +{{/if}} + <dl> + <dt>{{$queues.label}}</dt> + <dd>{{$queues.queue}}</dd> + </dl> + <dl> + <dt>{{$accounts.0}}</dt> + <dd>{{foreach from=$accounts.1 item=acc name=account}}<span title="{{$acc.label}}">{{$acc.val}}</span>{{if !$smarty.foreach.account.last}} / {{/if}}{{/foreach}}</dd> + </dl> + <dl> + <dt>{{$pending.0}}</dt> + <dd>{{$pending.1}}</dt> + </dl> + <dl> + <dt>{{$channels.0}}</dt> + <dd>{{foreach from=$channels.1 item=ch name=chan}}<span title="{{$ch.label}}">{{$ch.val}}</span>{{if !$smarty.foreach.chan.last}} / {{/if}}{{/foreach}}</dd> + </dl> + <dl> + <dt>{{$plugins.0}}</dt> + <dd> + {{foreach $plugins.1 as $p}} {{$p}} {{/foreach}} + </dd> + </dl> + <dl> + <dt>{{$version.0}}</dt> + <dd>{{$version.1}} - {{$build}}</dd> + </dl> + <dl> + <dt>{{$vmaster.0}}</dt> + <dd>{{$vmaster.1}}</dd> + </dl> + <dl> + <dt>{{$vdev.0}}</dt> + <dd>{{$vdev.1}}</dd> + </dl> +</div>
\ No newline at end of file |