1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-20 11:51:28 +02:00

feat(admin-plugin): update tools template #211

This commit is contained in:
Awilum
2020-01-23 15:32:20 +03:00
parent 56eb413c66
commit e26d4c10e4

View File

@@ -1,24 +1,24 @@
{% extends "plugins/admin/templates/partials/base.html" %}
{% block content %}
<table class="table no-margin">
<thead>
<tr>
<th>{{ tr('admin_key') }}</th>
<th>{{ tr('admin_value') }}</th>
</tr>
</thead>
<tbody>
{% for key, value in registry_dump %}
<tr>
<td>
{{ key }}
</td>
<td>
{{ value }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
<table>
<thead>
<tr>
<th>{{ tr('admin_key') }}</th>
<th>{{ tr('admin_value') }}</th>
</tr>
</thead>
<tbody>
{% for key, value in registry_dump %}
<tr>
<td>
{{ key }}
</td>
<td>
{{ value }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}