emile 1 week ago
parent b65301bb2c
commit fd333aeb13

@ -332,7 +332,7 @@
<div class="mt-10 relative"> <div class="mt-10 relative">
<div class=" bg-gray-200 rounded-t-md flex justify-between items-center text-white text-xl font-bold h-[50px]"> <div class=" bg-gray-200 rounded-t-md flex justify-between items-center text-white text-xl font-bold h-[50px]">
<div class="px-3"> <div class="px-3">
<p class="text-secondosiblue uppercase font-bold">Payments</p> <p class="text-secondosiblue uppercase font-bold">Orders</p>
</div> </div>
<!-- <button <!-- <button
@ -358,11 +358,18 @@
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap "> class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap ">
Date Date
</th> </th>
<th scope="col"
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
Paid
</th>
<th scope="col" <th scope="col"
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap"> class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
Total Total
</th> </th>
<th scope="col"
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
Remaining
</th>
{# <th scope="col" class="px-6 py-3 text-sm font-medium text-gray-500 uppercase whitespace-nowrap">#} {# <th scope="col" class="px-6 py-3 text-sm font-medium text-gray-500 uppercase whitespace-nowrap">#}
{# Actions#} {# Actions#}
{# </th>#} {# </th>#}
@ -377,7 +384,7 @@
</td> </td>
<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.business.name}}</p> <p class="text-secondosiblue">{{order.business.name}}</p>
</td> </td>
@ -385,6 +392,16 @@
<p class="text-secondosiblue">{{order.date}}</p> <p class="text-secondosiblue">{{order.date}}</p>
</td> </td>
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
<p class="text-secondosiblue">{{order.get_paid_amount}}</p>
</td>
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
<p class="text-secondosiblue">{{order.get_cart_total}}</p>
</td>
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
<p class="text-secondosiblue">{{order.remaining_balance}}</p>
</td>
</tbody> </tbody>
{% endfor %} {% endfor %}
</table> </table>

Loading…
Cancel
Save