configstuff

This commit is contained in:
lubiana 2025-06-14 20:21:36 +02:00
parent ca0e7d300d
commit c3411e5754
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
12 changed files with 243 additions and 121 deletions

View file

@ -0,0 +1,13 @@
{% 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 %}