templates/credit_history/list.html.twig line 1

Open in your IDE?
  1. {% for credit in creditHistory %}
  2.     <option value="{{ credit.id }}">    
  3.             {{ is_granted('ROLE_SUBCONTRACTOR') ? '---' : credit | contrat_name_and_solde(credit) }}
  4.     </option>
  5. {% endfor %}