diff options
Diffstat (limited to 'view/tpl/admin_summary.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/admin_summary.tpl | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/view/tpl/admin_summary.tpl b/view/tpl/admin_summary.tpl index 99221c13e..d3665626f 100644..100755 --- a/view/tpl/admin_summary.tpl +++ b/view/tpl/admin_summary.tpl @@ -1,39 +1,39 @@ -<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 }} + {{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> + <dt>{{$plugins.0}}</dt> - {{ for $plugins.1 as $p }} - <dd>$p</dd> - {{ endfor }} + {{foreach $plugins.1 as $p}} + <dd>{{$p}}</dd> + {{/foreach}} </dl> <dl> - <dt>$version.0</dt> - <dd>$version.1 - $build</dt> + <dt>{{$version.0}}</dt> + <dd>{{$version.1}} - {{$build}}</dt> </dl> |