summaryrefslogtreecommitdiffstats
path: root/ui/html/pages/organisations_list.tmpl.html
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-04-18 13:58:11 +0100
committerGitHub <noreply@github.com>2024-04-18 13:58:11 +0100
commit69017cc225e2754466b8444ca42cb1122208425d (patch)
tree6a7ac8d150b95c1fad9229d124a23737abc17964 /ui/html/pages/organisations_list.tmpl.html
parent530f08071fc1295fabdaedf9724b8cda48780927 (diff)
parentf08ac7b887e0bae0cb67362eec90a575faec07f1 (diff)
Merge pull request #4 from defencedigital/changes
Changes
Diffstat (limited to 'ui/html/pages/organisations_list.tmpl.html')
-rw-r--r--ui/html/pages/organisations_list.tmpl.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/ui/html/pages/organisations_list.tmpl.html b/ui/html/pages/organisations_list.tmpl.html
new file mode 100644
index 0000000..5fedb09
--- /dev/null
+++ b/ui/html/pages/organisations_list.tmpl.html
@@ -0,0 +1,33 @@
+{{ define "title" }}Organisations{{end}}
+
+{{ define "main" }}
+<h3>Organisations <span><a href="#" class="admin-link">[Admin]</a></span></h3>
+<table id="home-summary-table">
+ <thead>
+ <tr id="header-row">
+ <th>Organisation</th>
+ <th>RP</th>
+ <th>Lead Inspector[s]</th>
+ <th>Another attribute</th>
+ <th>Another attribute</th>
+ <th>SharePoint</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{ if .Organisations }}
+ {{range .Organisations}}
+ <tr>
+ <td><a href="#">{{.Name}}</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>
+ {{end}}
+ {{else}}
+ <p>There are no organisations yet.</p>
+ {{end}}
+ </tbody>
+</table>
+{{ end }}