diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-09-04 13:50:40 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-09-04 13:50:40 -0400 |
| commit | b2164f9f6001dcac952a3d2b301f1425fdb3cbe9 (patch) | |
| tree | eb69107c324d46133cee95196eb807ab59c549c1 /views/staff/users | |
| parent | 95f62d72945acbac295f2342fd51cea9337d7cb7 (diff) | |
admin users views
Diffstat (limited to 'views/staff/users')
| -rw-r--r-- | views/staff/users/index.ejs | 10 | ||||
| -rw-r--r-- | views/staff/users/show.ejs | 14 | ||||
| -rw-r--r-- | views/staff/users/show_404.ejs | 8 |
3 files changed, 30 insertions, 2 deletions
diff --git a/views/staff/users/index.ejs b/views/staff/users/index.ejs index fb072d8..ad92fc3 100644 --- a/views/staff/users/index.ejs +++ b/views/staff/users/index.ejs @@ -1,6 +1,14 @@ [[ include ../_header ]] <h1>Users</h1> -[[ include _users ]] + <nav> + <a href="/staff">home</a> + <a href="/staff/users">users</a> + <a href="/staff/projects">projects</a> + </nav> + + <hr> + +[[ include ../_users ]] [[ include ../_footer ]] diff --git a/views/staff/users/show.ejs b/views/staff/users/show.ejs index b5e1a6c..d306443 100644 --- a/views/staff/users/show.ejs +++ b/views/staff/users/show.ejs @@ -1,4 +1,16 @@ [[ include ../_header ]] - <h1>User: [[ profile.username ]]</h1> + <h1>User: [[- profile.username ]]</h1> + + <nav> + <a href="/staff">home</a> + <a href="/staff/users">users</a> + <a href="/staff/projects">projects</a> + </nav> + + <hr> + + <div class="json"> + [[- profileJSON ]] + </div> [[ include ../_footer ]] diff --git a/views/staff/users/show_404.ejs b/views/staff/users/show_404.ejs index c52e1e7..3fd20a8 100644 --- a/views/staff/users/show_404.ejs +++ b/views/staff/users/show_404.ejs @@ -1,4 +1,12 @@ [[ include ../_header ]] <h1>User not found</h1> + <nav> + <a href="/staff">home</a> + <a href="/staff/users">users</a> + <a href="/staff/projects">projects</a> + </nav> + + <hr> + [[ include ../_footer ]] |
