Initial commit. Actually written ages ago.
[backup-rotation] / templates / custodian.html
1 {#-*-html-*-#}
2
3 {% extends "base.html" %}
4
5 {% block content %}
6 <h1>Custodian {{ cust.name }}</h1>
7 <ul>
8 {%- for vol in cust.volumes %}
9 <li>{{ vol.name }}, since {{ vol.since }}
10 {%- else %}
11 <li>(No volumes held.)
12 {%- endfor %}
13 </ul>
14 {% endblock content %}