11 | {{ template "repobar" $input }}
12 | {{ template "catalogbar" $input }}
13 | {{ template "tagbar" $input }}
14 | {{ template "manifestbar" $input }}
15 |
16 |
17 |
22 |
23 | {{ end }}
24 |
--------------------------------------------------------------------------------
/project/templates/managerepos.html:
--------------------------------------------------------------------------------
1 | {{ define "managerepos" }}
2 | {{ $input := . }}
3 |
4 |
5 |
4 | {{ if $input.headerdata }}
5 |
{{ $input.headerdata.header }}
6 | {{ end }}
7 |
8 | {{ if eq $input.action "info" }}
9 |
Repos
10 | {{ else }}
11 |
Repos
12 | {{ end }}
13 |
14 | {{ if eq $input.action "graph" }}
15 |
Graph
16 | {{ else }}
17 |
Graph
18 | {{ end }}
19 |
20 | {{ if eq $input.action "conf" }}
21 |
Confs
22 | {{ else }}
23 |
Confs
24 | {{ end }}
25 |
Update all
26 |
27 | {{end}}
28 |
--------------------------------------------------------------------------------