diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-04 21:13:47 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-04 21:13:47 -0400 |
commit | ad4a7ff9159c2c64cea98d7189f46fa7d6174fc2 (patch) | |
tree | 508f971f1dbc6c6f01207426c675542b55e0333e /src/views/pages/users/index.html.php | |
parent | f3b3ea69fb46e45bf3598aa7a6bcf62aa80e4703 (diff) |
Screw it, I'm tired of trying to break this into individual commits
Diffstat (limited to 'src/views/pages/users/index.html.php')
-rw-r--r-- | src/views/pages/users/index.html.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/views/pages/users/index.html.php b/src/views/pages/users/index.html.php index 5f1ab02..c268c87 100644 --- a/src/views/pages/users/index.html.php +++ b/src/views/pages/users/index.html.php @@ -1,10 +1,12 @@ <?php global $VARS; $t = $VARS['template']; -$attribs = $VARS['template']; +$attribs = $VARS['attribs']; $users = $VARS['users']; $t->header('Users'); +$t->paragraph($t->link($t->url('users.csv'), "Download this as a spreadsheet.")); + $t->openTag('form', array('action'=>$t->url('users/index'), 'method'=>'post')); |