mirror of
https://github.com/sigmasternchen/MyTube
synced 2025-03-15 12:58:54 +00:00
20 lines
427 B
Twig
20 lines
427 B
Twig
![]() |
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Users{% endblock %}
|
||
|
{% block stylesheets %}
|
||
|
<link rel="stylesheet" href="{{ asset("css/admin.css") }}">
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block javascripts %}
|
||
|
{% if ok %}
|
||
|
<script>
|
||
|
window.setTimeout(function () {
|
||
|
toast("Saved");
|
||
|
}, 0);
|
||
|
</script>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
{{ form(form) }}
|
||
|
{% endblock %}
|