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 %}