summaryrefslogtreecommitdiff
path: root/views/staff/users
diff options
context:
space:
mode:
Diffstat (limited to 'views/staff/users')
-rw-r--r--views/staff/users/index.ejs10
-rw-r--r--views/staff/users/show.ejs14
-rw-r--r--views/staff/users/show_404.ejs8
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 ]]