Files
shoppy/tpv/templates/tpv/cart_item.html
T
2024-03-22 00:44:49 +01:00

16 lines
598 B
HTML

<div class="justify-between mb-6 rounded-lg bg-white p-6 shadow-md sm:flex sm:justify-start">
<div class="sm:ml-4 sm:flex sm:w-full sm:justify-between">
<div class="mt-5 sm:mt-0">
<h2 class="text-lg font-bold text-gray-900">Factura #{{ item.id }}</h2>
<p class="mt-1 text-xs text-gray-700">
{{ item.name }} - {{ item.description }}
</p>
</div>
<div class="mt-4 flex justify-between sm:space-y-6 sm:mt-0 sm:block sm:space-x-6">
<div class="flex items-center border-gray-100">
{{ item.amount_to_pay }} €
</div>
</div>
</div>
</div>