blob: a8685ce2f183d9ffe65d7bcf6c3fe6e496d3504b (
plain) (
tree)
|
|
{{ define "title" }}Operations{{end}}
{{ define "main" }}
<h3>Operations <span><a href="#" class="admin-link">[Admin]</a></span></h3>
{{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>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="#">Link</a></td>
</tr>
{{end}}
</tbody>
</table>
{{else}}
<p>There are no operations.</p>
{{end}}
{{ end }}
|