13 lines
387 B
Twig
13 lines
387 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Edit System Setting{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Edit System Setting: {{ system_config.key.name }}</h1>
|
|
|
|
{{ include('system_config/_form.html.twig', {'button_label': 'Update'}) }}
|
|
|
|
<a href="{{ path('app_system_config_index') }}">back to list</a>
|
|
|
|
{{ include('system_config/_reset_form.html.twig') }}
|
|
{% endblock %}
|