diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-18 11:06:32 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-18 11:06:32 +0100 |
commit | 20560419614e22fbb58567cdb0b88b54caf679f4 (patch) | |
tree | 163df44f07907d865b363db3bc198287ebd3d25f /ui/html/pages/persons_list.tmpl.html | |
parent | 435742cede199e3c85b5e2eb5a42ccbee4906a05 (diff) |
Adds code from ded-go-core - no database
D2S test app code removed (nginx error).
Adds all go code from `ded-go-core` using the basic Gov.UK UI for a test
page for DED.
Diffstat (limited to 'ui/html/pages/persons_list.tmpl.html')
-rw-r--r-- | ui/html/pages/persons_list.tmpl.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ui/html/pages/persons_list.tmpl.html b/ui/html/pages/persons_list.tmpl.html new file mode 100644 index 0000000..87689df --- /dev/null +++ b/ui/html/pages/persons_list.tmpl.html @@ -0,0 +1,33 @@ +{{ 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 }} + |