From b4e125e75add613b0a177a7fdc5bc40e2ed03006 Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 23 Jun 2019 01:05:20 +0300 Subject: [PATCH] Admin Panel: Tools #170 #165 - Registry tab updates --- .../templates/system/tools/registry.html | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/site/plugins/admin/views/templates/system/tools/registry.html b/site/plugins/admin/views/templates/system/tools/registry.html index 5f6a6400..eb8a7c5a 100644 --- a/site/plugins/admin/views/templates/system/tools/registry.html +++ b/site/plugins/admin/views/templates/system/tools/registry.html @@ -1,5 +1,24 @@ {% extends "plugins/admin/views/partials/base.html" %} {% block content %} - {{ registry_dump|raw }} + + + + + + + + + {% for key, value in registry_dump %} + + + + + {% endfor %} + +
{{ tr('admin_key') }}{{ tr('admin_value') }}
+ {{ key }} + + {{ value }} +
{% endblock %}