diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-12 16:05:37 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-12 16:05:37 +0000 |
commit | b64bb5cc7971092e76929a1cbabfafc813a8eb96 (patch) | |
tree | 55183786b66ce4e2ea29249c10b8b366bc685053 /ui/html | |
parent | 2648c9dfc3440f4c00a7b234de4687cc8a93a4d0 (diff) |
Some formatting for ESes in Ops table
Added another dummy ES to Operation 1 in test data so I can test the
listing inside the table - it still does not look correct though.
Diffstat (limited to 'ui/html')
-rw-r--r-- | ui/html/pages/operations/list.tmpl.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ui/html/pages/operations/list.tmpl.html b/ui/html/pages/operations/list.tmpl.html index 2e5a07b..240ba40 100644 --- a/ui/html/pages/operations/list.tmpl.html +++ b/ui/html/pages/operations/list.tmpl.html @@ -32,9 +32,14 @@ Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <td><a href="#">EP 2024</a></td> <td> {{if .EngagementStrategies}} - {{range .EngagementStrategies}} - {{.}} - {{end}} + <ul> + {{range .EngagementStrategies}} + <li> + Expires: <a href="#">{{.ValidTo.Format "Mon 2 Jan 2006" }}</a> + </li> + {{end}} + + </ul> {{else}} <p>NA</p> {{end}} |