add basic Users- and SeminariesAgent
This commit is contained in:
parent
2a5330e4be
commit
00d4aeac3a
13 changed files with 470 additions and 5 deletions
10
views/html/users/index.tpl
Normal file
10
views/html/users/index.tpl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<ul>
|
||||
<?php foreach($users as &$user) : ?>
|
||||
<li>
|
||||
<h2><a href="<?=$linker->link(array('user', $user['username']), 1)?>"><?=$user['username']?></a></h2>
|
||||
<details>
|
||||
<summary>registriert seit <?=date(\hhu\z\Utils::DATEFORMAT, strtotime($user['created']))?></summary>
|
||||
</details>
|
||||
</li>
|
||||
<?php endforeach ?>
|
||||
</ul>
|
||||
Loading…
Add table
Add a link
Reference in a new issue