summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/views/pages/users/index.html.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/views/pages/users/index.html.php b/src/views/pages/users/index.html.php
index ade4dea..c56d0b3 100644
--- a/src/views/pages/users/index.html.php
+++ b/src/views/pages/users/index.html.php
@@ -10,6 +10,9 @@ $t->paragraph($t->link($t->url('users.csv'), "Download this as a spreadsheet."))
$t->openTag('form', array('action'=>$t->url('users/index'),
'method'=>'post'));
+$t->tag('input', array('type'=>'submit',
+ 'value'=>'Save/Update'));
+
$t->openTag('table');
$t->openTag('tr');
@@ -60,6 +63,13 @@ foreach ($users as $user) {
$t->closeTag('tr');
}
+$t->openTag('tr');
+foreach ($attribs as $attrib) {
+ $t->tag('th', array(), $attrib['name']);
+}
+$t->tag('th');
+$t->closeTag('tr');
+
$t->closeTag('table');
$t->tag('input', array('type'=>'submit',