|
|
@ -386,6 +386,7 @@
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
<!-- TABLE BODY -->
|
|
|
|
{% for order in customer_orders %}
|
|
|
|
{% for order in customer_orders %}
|
|
|
|
<tbody class="bg-white divide-y divide-gray-200">
|
|
|
|
<tbody class="bg-white divide-y divide-gray-200">
|
|
|
|
|
|
|
|
<a href="{% url 'customer_order_detail' order.id %}">
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
<p class="text-secondosiblue">{{order.order_id}}</p>
|
|
|
|
<p class="text-secondosiblue">{{order.order_id}}</p>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
@ -408,7 +409,7 @@
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
|
|
|
<p class="text-secondosiblue">${{order.remaining_balance}}</p>
|
|
|
|
<p class="text-secondosiblue">${{order.remaining_balance}}</p>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
</a>
|
|
|
|
</tbody>
|
|
|
|
</tbody>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</table>
|
|
|
|