diff options
Diffstat (limited to 'views/staff/projects')
| -rw-r--r-- | views/staff/projects/index.ejs | 10 | ||||
| -rw-r--r-- | views/staff/projects/show.ejs | 15 | ||||
| -rw-r--r-- | views/staff/projects/show_404.ejs | 8 |
3 files changed, 33 insertions, 0 deletions
diff --git a/views/staff/projects/index.ejs b/views/staff/projects/index.ejs index a27a132..a5a9308 100644 --- a/views/staff/projects/index.ejs +++ b/views/staff/projects/index.ejs @@ -1,4 +1,14 @@ [[ include ../_header ]] <h1>Projects</h1> + <nav> + <a href="/staff">home</a> + <a href="/staff/users">users</a> + <a href="/staff/projects">projects</a> + </nav> + + <hr> + +[[ include ../_projects ]] + [[ include ../_footer ]] diff --git a/views/staff/projects/show.ejs b/views/staff/projects/show.ejs index 01b5c76..e821614 100644 --- a/views/staff/projects/show.ejs +++ b/views/staff/projects/show.ejs @@ -1,2 +1,17 @@ [[ include ../_header ]] + + <h1>Project</h1> + + <nav> + <a href="/staff">home</a> + <a href="/staff/users">users</a> + <a href="/staff/projects">projects</a> + </nav> + + <hr> + + <div class="json"> + [[- projectJSON ]] + </div> + [[ include ../_footer ]] diff --git a/views/staff/projects/show_404.ejs b/views/staff/projects/show_404.ejs index e0cf0e2..193333f 100644 --- a/views/staff/projects/show_404.ejs +++ b/views/staff/projects/show_404.ejs @@ -1,4 +1,12 @@ [[ include ../_header ]] <h1>Project 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 ]] |
