admin.html.twig 833 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{% block title %}Admin Configuration page!{% endblock %}</title>
  6. {% block stylesheets %}{% endblock %}
  7. <style>
  8. body {
  9. background-color: #333;
  10. color: #ddd;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. {% block body %}{% endblock %}
  16. {% block javascripts %}{% endblock %}
  17. {{ form(form) }}
  18. {% if old_value is defined and default is defined %}
  19. Old value: {{ old_value }} <br>
  20. Default value: {{ default }}
  21. Configuration dumped to <code> social.local.yaml </code>
  22. Backup of previous configuration in <code> social.local.yaml.back </code> will be overriden with the next change
  23. {% endif %}
  24. </body>
  25. </html>