friendica/view/admin_summary.tpl

37 lines
461 B
Smarty
Raw Normal View History

2011-06-13 18:03:06 +02:00
<div id='adminpage'>
<h1>$title - $page</h1>
2011-06-13 12:52:29 +02:00
<dl>
2011-06-13 18:03:06 +02:00
<dt>$pending.0</dt>
<dd>$pending.1</dt>
2011-06-13 12:52:29 +02:00
</dl>
2011-06-13 18:03:06 +02:00
<dl>
<dt>$users.0</dt>
<dd>$users.1</dd>
</dl>
{{ for $accounts as $p }}
<dl>
<dt>$p.0</dt>
2012-03-06 03:51:21 +01:00
<dd>{{ if $p.1 }}$p.1{{ else }}0{{ endif }}</dd>
2011-06-13 18:03:06 +02:00
</dl>
{{ endfor }}
2011-06-13 12:52:29 +02:00
2011-06-13 18:03:06 +02:00
<dl>
<dt>$plugins.0</dt>
{{ for $plugins.1 as $p }}
<dd>$p</dd>
{{ endfor }}
</dl>
2011-06-13 12:52:29 +02:00
2011-06-13 18:03:06 +02:00
<dl>
<dt>$version.0</dt>
<dd>$version.1 - $build</dt>
</dl>
2011-06-13 12:52:29 +02:00
2011-06-13 18:03:06 +02:00
</div>