diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-01 21:10:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-01 21:10:04 -0700 |
commit | e332d1074f1b663ec66d37b0f575df2e41d5535c (patch) | |
tree | 6309a232348eb70ed4db5fbb7ed898f98c5beee8 /view/theme/redbasic/tpl/admin_summary.tpl | |
parent | 42ed73ed4ac55ac62214301097f7d72cbcb37238 (diff) | |
download | volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.tar.gz volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.tar.bz2 volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.zip |
move theme specific files to theme dir
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 |