diff options
Diffstat (limited to 'views/staff/users')
| -rw-r--r-- | views/staff/users/index.ejs | 4 | ||||
| -rw-r--r-- | views/staff/users/show.ejs | 4 | ||||
| -rw-r--r-- | views/staff/users/show_404.ejs | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/views/staff/users/index.ejs b/views/staff/users/index.ejs new file mode 100644 index 0000000..62c0ae2 --- /dev/null +++ b/views/staff/users/index.ejs @@ -0,0 +1,4 @@ +[[ include ../_header ]] + <h1>Users</h1> + +[[ include ../_footer ]] diff --git a/views/staff/users/show.ejs b/views/staff/users/show.ejs new file mode 100644 index 0000000..b5e1a6c --- /dev/null +++ b/views/staff/users/show.ejs @@ -0,0 +1,4 @@ +[[ include ../_header ]] + <h1>User: [[ profile.username ]]</h1> + +[[ include ../_footer ]] diff --git a/views/staff/users/show_404.ejs b/views/staff/users/show_404.ejs new file mode 100644 index 0000000..c52e1e7 --- /dev/null +++ b/views/staff/users/show_404.ejs @@ -0,0 +1,4 @@ +[[ include ../_header ]] + <h1>User not found</h1> + +[[ include ../_footer ]] |
