summaryrefslogtreecommitdiff
path: root/themes/admin_default/views/users.html.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-15 01:55:07 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-15 01:55:07 +0000
commit2812f34732fd23094103b8bfe906d2adddd4f8fd (patch)
treeeb27dd6185a3ef89cd53b7461ae67464c903de4d /themes/admin_default/views/users.html.php
parent2842a1a8be748f6ec1024ea3a8ecc97471f70a3f (diff)
Rename default_admin to admin_default.
Diffstat (limited to 'themes/admin_default/views/users.html.php')
-rw-r--r--themes/admin_default/views/users.html.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/admin_default/views/users.html.php b/themes/admin_default/views/users.html.php
new file mode 100644
index 00000000..5e43fae9
--- /dev/null
+++ b/themes/admin_default/views/users.html.php
@@ -0,0 +1,13 @@
+<? defined("SYSPATH") or die("No direct script access."); ?>
+<div class="gBlock">
+ <a href="" class="gClose">X</a>
+ <h2>User Administration</h2>
+ <div class="gBlockContent">
+ <p>These are the users in your system</p>
+ <table>
+ <? foreach ($users as $i => $user): ?>
+ <tr><td><?= $user->name ?></td></tr>
+ <? endforeach ?>
+ </table>
+ </div>
+</div>