This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
arka-mvp/order/views.py

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')