<ul class="list-group mb-3 mt-3">
{% for linea in cabecera.lineas %}
<li class="list-group-item d-flex justify-content-between lh-sm bg-light">
<div class="text-success">
<h6 class="my-0 {{ not linea.parent ? '' : 'ms-4' }}" >
<small>
{% if linea.codarticulo == 0 %}# {% endif %}{{ linea.descripcion }}
</small>
</h6>
</div>
{% if linea.codarticulo == 0 %}
{% else %}
<span class="text-muted"><strong>$ {{ linea.precio }}</strong></span>
{% endif %}
</li>
{% endfor %}
{% if cabecera.propinatotal > 0 %}
<li class="list-group-item d-flex justify-content-between">
<div class="text-success">
<h6 class="my-0" >
<small>APORTE VOLUNTARIO</small>
</h6>
</div>
<strong>$ {{ cabecera.propinatotal }}</strong>
</li>
{% endif %}
</ul>