diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/html/pages/operations/list.tmpl.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ui/html/pages/operations/list.tmpl.html b/ui/html/pages/operations/list.tmpl.html index c377129..046ca29 100644 --- a/ui/html/pages/operations/list.tmpl.html +++ b/ui/html/pages/operations/list.tmpl.html @@ -2,7 +2,17 @@ {{ define "main" }} <h3>Operations <span><a href="#" class="admin-link">[Admin]</a></span></h3> -<p>There is nothing to see here yet.</p> + + {{if .Operations}} + <ul> + {{range .Operations}} + <li>{{.Name}} - {{.Description}}</li> + {{end}} + </ul> + {{else}} + <p>There are no operations.</p> + {{end}} + <table id="home-summary-table"> <thead> <tr id="header-row"> |