mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
feat: create tabs page orders
This commit is contained in:
@@ -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})
|
||||
|
||||
Reference in New Issue
Block a user