Changed directory structure of forms/inputs slightly
This commit is contained in:
10
templates/forms/inputs/user-name.html.twig
Normal file
10
templates/forms/inputs/user-name.html.twig
Normal file
@@ -0,0 +1,10 @@
|
||||
{% block input_user_name %}
|
||||
{% if 'name' not in form.fields.hidden %}
|
||||
{% if col_width %}<div class="{{col_width}}">{% endif %}
|
||||
<div class="row">
|
||||
{% include "forms/inputs/user-first_name.html.twig" with { 'col_width': 'col-sm-6' } %}
|
||||
{% include "forms/inputs/user-last_name.html.twig" with { 'col_width': 'col-sm-6' } %}
|
||||
</div>
|
||||
{% if col_width %}</div>{% endif %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user