10 lines
202 B
Python
10 lines
202 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def orders_list(request):
|
|
return render(request, 'orders/orders-list.html')
|
|
|
|
|
|
def order_create(request):
|
|
return render(request, 'orders/order-create.html')
|