summaryrefslogtreecommitdiffstats
path: root/ui/html/pages/organisations_list.tmpl.html
blob: 5fedb09bd5eacab87f00c79a8c698f4dab5a6b8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{ define "title" }}Organisations{{end}}

{{ define "main" }}
<h3>Organisations <span><a href="#" class="admin-link">[Admin]</a></span></h3>
<table id="home-summary-table">
    <thead>
        <tr id="header-row">
            <th>Organisation</th>
            <th>RP</th>
            <th>Lead Inspector[s]</th>
            <th>Another attribute</th>
            <th>Another attribute</th>
            <th>SharePoint</th>
        </tr>
    </thead>
    <tbody>
        {{ if .Organisations }}
            {{range .Organisations}}
                <tr>
                    <td><a href="#">{{.Name}}</a></td>
                    <td>Tim Gudgeon</td>
                    <td>Tina McKinchey / Barbara Snelland</td>
                    <td>Bobbins</td>
                    <td>Bobbins</td>
                    <td><a href="#">Link</a></td>
                </tr>
            {{end}}
            {{else}}
                <p>There are no organisations yet.</p>
        {{end}}
    </tbody>
</table>
{{ end }}