summaryrefslogtreecommitdiffstats
path: root/ui/html/pages/operations_list.tmpl.html
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-04-23 11:16:38 +0100
committerMatthew Lemon <y@yulqen.org>2024-04-23 11:16:38 +0100
commit0f951dcf029d4af284467543a3afdf5bf6581a20 (patch)
treea48384210cdc168e3bd3ccff6d6d516eeed9e748 /ui/html/pages/operations_list.tmpl.html
parent8b084e9fe7a5f3a04c32daf9a24f7f2cf67300f9 (diff)
switched to Django
Diffstat (limited to 'ui/html/pages/operations_list.tmpl.html')
-rw-r--r--ui/html/pages/operations_list.tmpl.html59
1 files changed, 0 insertions, 59 deletions
diff --git a/ui/html/pages/operations_list.tmpl.html b/ui/html/pages/operations_list.tmpl.html
deleted file mode 100644
index 2863d19..0000000
--- a/ui/html/pages/operations_list.tmpl.html
+++ /dev/null
@@ -1,59 +0,0 @@
-{{ define "title" }}Operations{{end}}
-
-
-{{ define "main" }}
-<h3>Operations <span><a href="#" class="admin-link">[Admin]</a></span></h3>
-
-<p>
-Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
-</p>
-
-
-{{if .Operations}}
-<table id="home-summary-table">
- <thead>
- <tr id="header-row">
- <th>Operation</th>
- <th>RP</th>
- <th>Lead Inspector[s]</th>
- <th>Description</th>
- <th>Organisation</th>
- <th>EPs</th>
- <th>ESs</th>
- <th>SharePoint</th>
- </tr>
- </thead>
- <tbody>
- {{range .Operations }}
- <tr>
- <td><a href="#">{{.Name}}</a></td>
- <td>Tim Gudgeon</td>
- <td>Tina McKinchey / Barbara Snelland</td>
- <td>{{.Description}}</td>
- <td>{{.OrganisationName}}</td>
- <td><a href="#">EP 2024</a></td>
- <td>
- {{if .EngagementStrategies}}
- <ul>
- {{range .EngagementStrategies}}
- <li class="table-list">
- <a href="#">{{.FormatForTable }}</a>
- </li>
- {{end}}
-
- </ul>
- {{else}}
- NA
- {{end}}
- </td>
- <td><a href="#">Link</a></td>
- </tr>
- {{end}}
- </tbody>
-</table>
-{{else}}
-<p>There are no operations.</p>
-{{end}}
-
-{{ end }}
-