infinitory/templates/nodes.html
2017-09-11 18:04:21 -07:00

26 lines
538 B
HTML

{% extends "layout.html" %}
{% block title %}Node inventory{% endblock %}
{% block body %}
<h1>Node inventory</h1>
<table>
<thead>
<tr>
{% for cell in columns %}
{{ cell.head_html() }}
{% endfor %}
</tr>
</thead>
<tbody>
{% for node in nodes %}
<tr>
{% for cell in columns %}
{{ cell.body_html(node) }}
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
{% block footer %}
<a href="../nodes.csv">Download CSV</a>
{% endblock %}