feat: create tabs page orders

This commit is contained in:
2025-01-10 16:43:22 -03:00
parent 0e096207a6
commit b84fd3bb69
15 changed files with 270 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
from django.shortcuts import render
# Create your views here.
from orders.models import Order
def viewsOrders(request):
orders = Order.objects.all()
o = orders[0].id_comanda
return render(request, 'orders.html',{'orders': orders})