templates/callcenter/_lineasfinal.html.twig line 1

Open in your IDE?
  1. <ul class="list-group mb-3 mt-3">
  2.     {% for linea in cabecera.lineas %}
  3.         <li class="list-group-item d-flex justify-content-between lh-sm bg-light">
  4.             <div class="text-success">
  5.                 <h6 class="my-0 {{ not linea.parent ? '' : 'ms-4' }}" >
  6.                     <small>
  7.                         {% if linea.codarticulo == 0 %}# {% endif %}{{ linea.descripcion }}
  8.                     </small>
  9.                 </h6>
  10.             </div>
  11.             {% if linea.codarticulo == 0 %}
  12.             {% else %}
  13.                 <span class="text-muted"><strong>$ {{ linea.precio }}</strong></span>
  14.             {% endif %}
  15.         </li>
  16.     {% endfor %}
  17.     {% if cabecera.propinatotal > 0 %}
  18.         <li class="list-group-item d-flex justify-content-between">
  19.             <div class="text-success">
  20.                 <h6 class="my-0" >
  21.                     <small>APORTE VOLUNTARIO</small>
  22.                 </h6>
  23.             </div>
  24.             <strong>$ {{ cabecera.propinatotal }}</strong>
  25.         </li>
  26.     {% endif %}
  27. </ul>