mirror of
https://github.com/friendica/friendica
synced 2024-11-16 06:53:54 +00:00
22 lines
424 B
Smarty
22 lines
424 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
|
|
<div id="adminpage">
|
|
<h1>{{$title}} - {{$page}}</h1>
|
|
|
|
<dl>
|
|
<dt>{{$users.0}}</dt>
|
|
<dd>{{$users.1}}</dd>
|
|
</dl>
|
|
{{foreach $accounts as $p}}
|
|
<dl>
|
|
<dt>{{$p.0}}</dt>
|
|
<dd>{{if $p.1}}{{$p.1}}{{else}}0{{/if}}</dd>
|
|
</dl>
|
|
{{/foreach}}
|
|
|
|
</div>
|