Provided the same treatment to the role and group forms
This commit is contained in:
11
templates/forms/partials/abstract/input-name.html.twig
Normal file
11
templates/forms/partials/abstract/input-name.html.twig
Normal file
@@ -0,0 +1,11 @@
|
||||
{% if 'name' not in form.fields.hidden %}
|
||||
{% if col_width %}<div class="{{col_width}}">{% endif %}
|
||||
<div class="form-group">
|
||||
<label for="input-{{type}}-name" class="control-label">{{field_name | default(translate('NAME'))}}</label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon"><i class="fas fa-edit fa-fw"></i></span>
|
||||
<input type="text" id="input-{{type}}-name" class="form-control" name="name" autocomplete="off" value="{{current_value}}" placeholder="{{ placeholder | default(translate('NAME')) }}" {% if 'name' in form.fields.disabled %}disabled{% endif %}>
|
||||
</div>
|
||||
</div>
|
||||
{% if col_width %}</div>{% endif %}
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user