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

Admin Panel: Tools #170 #165

- Registry tab updates
This commit is contained in:
Awilum
2019-06-23 01:05:20 +03:00
parent c7a3f20ee1
commit b4e125e75a

View File

@@ -1,5 +1,24 @@
{% extends "plugins/admin/views/partials/base.html" %}
{% block content %}
{{ registry_dump|raw }}
<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 %}