iosfu/iosfu/plugin/device_info/templates/main.jinja

13 lines
262 B
Django/Jinja

{% extends "_layout.jinja" %}
{% block content %}
<table class="table table-bordered">
{% for key in plugin_data.device %}
<tr>
<th>{{ key }}</th>
<td>{{ plugin_data.device[key] }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}