templates/callcenter/_lineas.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="{{ linea.codarticulo == 0 ? '' : 'text-success' }}">
  5.             <h6 class="my-0 {{ not linea.parent ? '' : 'ms-4' }}" >
  6.                 <small>
  7.                     <a href="{{ path('cc_borrarlista', {id: linea.id }) }}"><i class="bi bi-trash text-danger" style="font-size: 0.8rem;"></i></a>
  8.                     {% if linea.codarticulo == 0 %}# {% endif %}{{ linea.descripcion }}
  9.                 </small>
  10.                 {% if linea.codarticulo > 0 %}
  11.                     {% if linea.unidades > 1 %}(x{{ linea.unidades }}){% endif %}
  12.                     <a href="#" class="mx-1"
  13.                                 data-url="{{ path('cc_agregarcomentario', {parent: linea.id }) }}"
  14.                                 data-action="content-loader#openModal">             
  15.                         <i class="bi bi-chat-dots text-dark" 
  16.                             data-title="Agregar Comentario"
  17.                             data-footer="false"
  18.                             data-url="{{ path('cc_agregarcomentario', {parent: linea.id }) }}" style="font-size: 0.9rem;"></i>
  19.                     </a>
  20.                 {% endif %}
  21.             </h6>
  22.         </div>
  23.         {% if linea.codarticulo == 0 %}
  24.         {% else %}
  25.             <span class="text-muted"><strong>$ {{ linea.precio }}</strong></span>
  26.         {% endif %}
  27.     </li>    
  28. {% endfor %}
  29. </ul>
  30. <ul class="list-group mb-3">
  31.     <li class="list-group-item d-flex justify-content-between lh-sm bg-light">
  32.         <div class="text-dark">
  33.             <h6 class="my-0" ><strong>TOTAL</strong></h6>
  34.         </div>
  35.         <span class="text-muted"><strong>$ {{ cabecera.total }}</strong></span>
  36.     </li>
  37. </ul>