<div class="priceList"> <p class="title">{{ Name }} {% for flag, weights in Iso %} <span class="flag-icon flag-icon-{{ flag }}"></span> </p> <div> <table class="table"> <tbody> {% for weight, price in weights %} <tr> <td class="p3">{% trans %} do {% endtrans %}{{ weight }} {% trans %}kg{% endtrans %}</td> <td class="p3"> {{ price | round() }} {% trans %}Kč{% endtrans %}</td> </tr> {% endfor %} </tbody> </table> </div> {% endfor %}</div>