26 lines
1.1 KiB
Twig
26 lines
1.1 KiB
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% set data = admin.data('system') %}
|
|
|
|
{% block titlebar %}
|
|
<div class="button-bar">
|
|
<a class="button" href="{{ base_url }}"><i class="fa fa-reply"></i> {{ "PLUGIN_ADMIN.BACK"|tu }}</a>
|
|
<button class="button" type="submit" name="task" value="save" form="blueprints"><i class="fa fa-check"></i> {{ "PLUGIN_ADMIN.SAVE"|tu }}</button>
|
|
</div>
|
|
<h1><i class="fa fa-fw fa-wrench"></i> {{ "PLUGIN_ADMIN.CONFIGURATION"|tu }} - {{ "PLUGIN_ADMIN.SYSTEM"|tu }}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content_top %}
|
|
<div class="alert notice">{{ "PLUGIN_ADMIN.SAVE_LOCATION"|tu }}: <b>{{ data.file.filename|replace({(base_path):''}) }}</b></div>
|
|
<ul class="tab-bar">
|
|
<li class="active"><span>{{ "PLUGIN_ADMIN.SYSTEM"|tu }}</span></li>
|
|
<li><a href="{{ base_url_relative }}/site">{{ "PLUGIN_ADMIN.SITE"|tu }}</a></li>
|
|
<li><a href="{{ base_url_relative }}/info">{{ "PLUGIN_ADMIN.INFO"|tu }}</a></li>
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'partials/blueprints.html.twig' with { blueprints: data.blueprints, data: data } %}
|
|
{% endblock %}
|
|
|