diff --git a/themes/grav/templates/config.html.twig b/themes/grav/templates/config.html.twig
index 8fd49d77..f8b1366e 100644
--- a/themes/grav/templates/config.html.twig
+++ b/themes/grav/templates/config.html.twig
@@ -10,7 +10,7 @@
{% endif %}
{% block stylesheets %}
- {% do assets.addCss(theme_url~'/css/codemirror/codemirror.css') %}
+ {% do assets.addCss(theme_url ~ '/css/codemirror/codemirror.css') %}
{{ parent() }}
{% endblock %}
@@ -29,45 +29,57 @@
{% block content_top %}
{{ "PLUGIN_ADMIN.SAVE_LOCATION"|tu }}: {{ data.file.filename|replace({(base_path):''}) }}
{% endblock %}
{% block content %}
- {% if isInfo %}
-
- {{ admin.phpinfo|raw }}
-
- {% else %}
- {% include 'partials/blueprints.html.twig' with { blueprints: data.blueprints, data: data } %}
+ {% if authorize(['admin.configuration_' ~ config_slug, 'admin.super']) %}
+ {% if isInfo %}
+
+ {{ admin.phpinfo|raw }}
+
+ {% else %}
+ {% include 'partials/blueprints.html.twig' with { blueprints: data.blueprints, data: data } %}
+ {% endif %}
{% endif %}
-
{% include 'partials/modal-changes-detected.html.twig' %}
{% endblock %}