student numbers
[ssproject1617.git] / testcms-final-anon / system / admin / theme / users / index.php
1 <h1>Users <a href="<?php echo admin_url('users/add'); ?>">Create a new user</a></h1>
2
3 <?php echo Notifications::read(); ?>
4
5 <section class="content">
6 <ul class="list">
7 <?php foreach($users as $user): ?>
8 <li>
9 <a href="<?php echo admin_url('users/edit/' . $user->id); ?>">
10 <strong><?php echo $user->real_name; ?></strong>
11 <span>Username: <?php echo $user->username; ?></span>
12
13 <i class="role"><?php echo ucwords($user->role); ?></i>
14 </a>
15 </li>
16 <?php endforeach; ?>
17 </ul>
18 </section>