46 lines
1.3 KiB
Twig
46 lines
1.3 KiB
Twig
{% extends "@admin/forms/user.html.twig" %}
|
|
|
|
{% block user_form %}
|
|
{% if 'user_name' not in form.fields.hidden %}
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-user_name.html.twig" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 'group' not in form.fields.hidden %}
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-group.html.twig" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 'name' not in form.fields.hidden %}
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-first_name.html.twig" %}
|
|
</div>
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-last_name.html.twig" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 'email' not in form.fields.hidden %}
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-email.html.twig" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 'theme' not in form.fields.hidden %}
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-theme.html.twig" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 'locale' not in form.fields.hidden %}
|
|
<div class="col-sm-6">
|
|
{% include "forms/partials/input-user-locale.html.twig" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if 'password' not in form.fields.hidden %}
|
|
{% include "forms/partials/user-set-password.html.twig" %}
|
|
{% endif %}
|
|
{% endblock %} |