47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
{% extends 'base.jinja.html' %}
|
|
|
|
|
|
{% block page_title %}
|
|
{{ l.settings_page_title }}
|
|
{% endblock %}
|
|
|
|
{% block add_js %}
|
|
<script src="{{ STATIC_PREFIX }}js/settings.js"></script>
|
|
{% endblock %}
|
|
|
|
{% block page %}
|
|
<div class="toolbar">
|
|
<h2>{{ l.settings_page_title }}</h2>
|
|
</div>
|
|
<div class="panel">
|
|
<div class="panel-body">
|
|
<h3>{{ l.settings_variable_panel_system_variables }}</h3>
|
|
|
|
{% with variables=system_variables %}
|
|
{% include 'settings/component/table.jinja.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-inactive">
|
|
<div class="panel-body">
|
|
<h3>{{ l.settings_variable_panel_plugin_variables }}</h3>
|
|
|
|
{% with variables=plugin_variables %}
|
|
{% include 'settings/component/table.jinja.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modals hidden">
|
|
<div class="modals-outer">
|
|
<a href="javascript:void(0);" class="modal-close">
|
|
<i class="fa fa-close"></i>
|
|
</a>
|
|
<div class="modals-inner">
|
|
{% include 'settings/modal/edit.jinja.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|