summaryrefslogtreecommitdiffstats
path: root/ui/html/pages/persons_list.tmpl.html
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-04-23 11:22:21 +0100
committerGitHub <noreply@github.com>2024-04-23 11:22:21 +0100
commitceca6fa956b21c43263e53c328d619c4ede21914 (patch)
treea48384210cdc168e3bd3ccff6d6d516eeed9e748 /ui/html/pages/persons_list.tmpl.html
parent8b084e9fe7a5f3a04c32daf9a24f7f2cf67300f9 (diff)
parent0f951dcf029d4af284467543a3afdf5bf6581a20 (diff)
Merge pull request #22 from defencedigital/pyswitch
switched to Django
Diffstat (limited to 'ui/html/pages/persons_list.tmpl.html')
-rw-r--r--ui/html/pages/persons_list.tmpl.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/html/pages/persons_list.tmpl.html b/ui/html/pages/persons_list.tmpl.html
deleted file mode 100644
index 87689df..0000000
--- a/ui/html/pages/persons_list.tmpl.html
+++ /dev/null
@@ -1,33 +0,0 @@
-{{ define "title" }}Operations{{end}}
-
-
-{{ define "main" }}
-<h3>People <span><a href="#" class="admin-link">[Admin]</a></span></h3>
-
-{{if .Persons}}
- <table id="home-summary-table">
- <thead>
- <tr id="header-row">
- <th>First Name</th>
- <th>Last Name</th>
- <th>Organisation</th>
- <th>Role</th>
- </tr>
- </thead>
- <tbody>
- {{range .Persons }}
- <tr>
- <td>{{.FirstName}}</td>
- <td>{{.LastName}}</td>
- <td>{{.OrganisationName}}</td>
- <td>{{.RoleName}}</td>
- </tr>
- {{end}}
- </tbody>
- </table>
-{{else}}
-<p>There are no operations.</p>
-{{end}}
-
-{{ end }}
-