{% extends 'manage/general/master.twig' %} {% from 'macros.twig' import container_title %} {% from '_layout/input.twig' import input_csrf, input_text, input_checkbox, input_file, input_select, input_colour %} {% set title = conf_var.name is empty ? 'Adding a new setting' : ((conf_var.new ? 'Adding ' : 'Editing ') ~ ' setting ' ~ conf_var.name) %} {% block manage_content %}
{{ container_title(' ' ~ title) }}
{{ input_csrf() }} {% if conf_var.new %} {% endif %} {% if conf_var.type is not empty %}
{% endif %}
{% endblock %}