mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
Import SRE inventory code
This commit is contained in:
commit
7364ccbff8
18 changed files with 5348 additions and 0 deletions
15
templates/node.html
Normal file
15
templates/node.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue