diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-04-23 11:22:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 11:22:21 +0100 |
commit | ceca6fa956b21c43263e53c328d619c4ede21914 (patch) | |
tree | a48384210cdc168e3bd3ccff6d6d516eeed9e748 /ui/html/pages/organisations_list.tmpl.html | |
parent | 8b084e9fe7a5f3a04c32daf9a24f7f2cf67300f9 (diff) | |
parent | 0f951dcf029d4af284467543a3afdf5bf6581a20 (diff) |
Merge pull request #22 from defencedigital/pyswitch
switched to Django
Diffstat (limited to 'ui/html/pages/organisations_list.tmpl.html')
-rw-r--r-- | ui/html/pages/organisations_list.tmpl.html | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/html/pages/organisations_list.tmpl.html b/ui/html/pages/organisations_list.tmpl.html deleted file mode 100644 index 5fedb09..0000000 --- a/ui/html/pages/organisations_list.tmpl.html +++ /dev/null @@ -1,33 +0,0 @@ -{{ 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 }} |