

<div class="{{ class }} ">
    <label>{{ label }}</label>

    <select name="{{ idName }}" id="{{ idName }}" class="form-control">

        <option value=""    >__Choisir un modèle__</option>
        {% for tpl in array %}
        {% set tplName = tpl|replace({'.php.twig':''}) %}

            <option value="{{ tplName }}"  {{  tplName==value ? 'selected' : '' }}  >{{ tplName }}</option>

        {% endfor %}
    </select>


</div>