mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
26 lines
538 B
HTML
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 %}
|