diff options
Diffstat (limited to 'view/tpl/admin_summary.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/admin_summary.tpl | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/view/tpl/admin_summary.tpl b/view/tpl/admin_summary.tpl index 99221c13e..24cdd57cc 100644..100755 --- a/view/tpl/admin_summary.tpl +++ b/view/tpl/admin_summary.tpl @@ -1,40 +1,36 @@ -<div id='adminpage'> - <h1>$title - $page</h1> +<div class="generic-content-wrapper" id='adminpage'> + <h1>{{$title}} - {{$page}}</h1> <dl> - <dt>$queues.label</dt> - <dd>$queues.queue</dd> + <dt>{{$queues.label}}</dt> + <dd>{{$queues.queue}}</dd> </dl> <dl> - <dt>$pending.0</dt> - <dd>$pending.1</dt> + <dt>{{$pending.0}}</dt> + <dd>{{$pending.1}}</dt> </dl> <dl> - <dt>$users.0</dt> - <dd>$users.1</dd> + <dt>{{$users.0}}</dt> + <dd>{{$users.1}}</dd> </dl> - {{ for $accounts as $p }} + <!-- $accounts is empty + {{foreach $accounts as $p}} <dl> - <dt>$p.0</dt> - <dd>{{ if $p.1 }}$p.1{{ else }}0{{ endif }}</dd> + <dt>{{$p.0}}</dt> + <dd>{{if $p.1}}{{$p.1}}{{else}}0{{/if}}</dd> </dl> - {{ endfor }} - - + {{/foreach}} --> <dl> - <dt>$plugins.0</dt> - - {{ for $plugins.1 as $p }} - <dd>$p</dd> - {{ endfor }} - + <dt>{{$plugins.0}}</dt> + <dd> + {{foreach $plugins.1 as $p}} {{$p}} {{/foreach}} + + </dd> </dl> - <dl> - <dt>$version.0</dt> - <dd>$version.1 - $build</dt> + <dt>{{$version.0}}</dt> + <dd>{{$version.1}} - {{$build}}</dd> </dl> - </div> |