6 lines
118 B
Python
6 lines
118 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def orders_list(request):
|
|
return render(request, 'orders/orders-list.html')
|