diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/html/pages/operations/list.tmpl.html | 36 | ||||
-rw-r--r-- | ui/html/partials/nav.tmpl.html | 1 |
2 files changed, 37 insertions, 0 deletions
diff --git a/ui/html/pages/operations/list.tmpl.html b/ui/html/pages/operations/list.tmpl.html new file mode 100644 index 0000000..c377129 --- /dev/null +++ b/ui/html/pages/operations/list.tmpl.html @@ -0,0 +1,36 @@ +{{ define "title" }}Operations{{end}} + +{{ define "main" }} +<h3>Operations <span><a href="#" class="admin-link">[Admin]</a></span></h3> +<p>There is nothing to see here yet.</p> +<table id="home-summary-table"> + <thead> + <tr id="header-row"> + <th>Operation</th> + <th>RP</th> + <th>Lead Inspector[s]</th> + <th>Another attribute</th> + <th>Another attribute</th> + <th>SharePoint</th> + </tr> + </thead> + <tbody> + <tr> + <td><a href="#">First operation</a></td> + <td>Tim Gudgeon</td> + <td>Tina McKinchey / Barbara Snelland</td> + <td>Bobbins</td> + <td>Bobbins</td> + <td><a href="#">Link</a></td> + </tr> + <tr> + <td>Second organisation</td> + <td>Seth Pring</td> + <td>Barbara Snelland</td> + <td>Bobbins</td> + <td>Bobbins</td> + <td><a href="#">Link</a></td> + </tr> + </tbody> +</table> +{{ end }} diff --git a/ui/html/partials/nav.tmpl.html b/ui/html/partials/nav.tmpl.html index 1e43d8c..ed3a355 100644 --- a/ui/html/partials/nav.tmpl.html +++ b/ui/html/partials/nav.tmpl.html @@ -3,6 +3,7 @@ <h1>DefNucSyR Engagement Database</h1> <a href="/">Home</a> <a href="/organisation/list">Organisations</a> + <a href="/operation/list">Operations</a> <a href="#">Engagement Planning</a> </nav> {{ end }} |