mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
15 lines
350 B
HTML
15 lines
350 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Node {{ node["facts"]["fqdn"] }}{% endblock %}
|
|
{% block body %}
|
|
<h1>Node {{ node["facts"]["fqdn"] }}</h1>
|
|
<table>
|
|
<tbody>
|
|
{% for cell in columns %}
|
|
<tr>
|
|
{{ cell.head_html() }}
|
|
{{ cell.body_html(node) }}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|