Files
Ethica-vitrine/user/plugins/admin/themes/grav/templates/tools.html.twig
T
2018-04-11 17:57:57 +02:00

29 lines
1.1 KiB
Twig

{% extends 'partials/base.html.twig' %}
{% set tools_slug = uri.basename|e %}
{% if tools_slug == 'tools' %}{% set tools_slug = 'direct-install' %}{% endif %}
{% set title = "PLUGIN_ADMIN.TOOLS"|tu ~ ": " ~ ("PLUGIN_ADMIN." ~ tools_slug|underscorize|upper)|tu %}
{% block titlebar %}
<h1><i class="fa fa-fw fa-wrench"></i> {{ "PLUGIN_ADMIN.TOOLS"|tu }} - {{ ("PLUGIN_ADMIN." ~ tools_slug|underscorize|upper)|tu }}</h1>
{% endblock %}
{% block content_top %}
<ul class="tab-bar">
{% for tool in admin.tools %}
<li {% if tools_slug == tool|hyphenize %}class="active"{% endif %}>
{% if tools_slug == tool %}<span>{% else %}<a href="{{ base_url_relative }}/tools/{{tool|hyphenize}}">{% endif %}
{{ tool|tu|capitalize }}
{% if tools_slug == tool %}</span>{% else %}</a>{% endif %}
</li>
{% endfor %}
</ul>
{% endblock %}
{% block content %}
{% if authorize(['admin.tools', 'admin.super']) %}
{% include 'partials/tools-' ~ tools_slug ~ '.html.twig' ignore missing %}
{% endif %}
{% endblock %}