mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
9 lines
220 B
Python
9 lines
220 B
Python
from django.shortcuts import render
|
|
|
|
from orders.models import Order
|
|
|
|
def viewsOrders(request):
|
|
orders = Order.objects.all()
|
|
o = orders[0].id_comanda
|
|
return render(request, 'orders.html',{'orders': orders})
|