mirror of
https://github.com/tchapi/davis.git
synced 2025-01-18 05:18:35 +01:00
16 lines
375 B
Twig
16 lines
375 B
Twig
{% extends 'base.html.twig' %}
|
|
{% set menu = 'resources' %}
|
|
|
|
{% block body %}
|
|
|
|
<a href="{{ path('users') }}" class="btn btn-link">« {{ "users.back"|trans }}</a>
|
|
|
|
{% if username %}
|
|
<h1 class="display-4 mb-5">{{ "users.edit"|trans({'username': username }) }}</h1>
|
|
{% else %}
|
|
<h1 class="display-4 mb-5">{{ "users.new"|trans }}</h1>
|
|
{% endif %}
|
|
|
|
{{ form(form) }}
|
|
|
|
{% endblock %} |