1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-03 19:57:57 +02:00
Files
php-monstra/plugins/box/users/views/frontend/index.view.php
2013-01-04 21:08:04 +02:00

15 lines
321 B
PHP

<h3><?php echo __('Users', 'users'); ?></h3>
<hr>
<table>
<tr>
<td></td>
</tr>
<?php foreach ($users as $user) { ?>
<tr>
<td>
<a href="<?php echo Site::url(); ?>users/<?php echo $user['id']; ?>"><?php echo $user['login']; ?></a>
</td>
</tr>
<?php } ?>
</table>