mirror of
https://github.com/sigmasternchen/MyTube
synced 2025-03-15 04:48:55 +00:00
20 lines
No EOL
427 B
Twig
20 lines
No EOL
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 %} |