mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
8856d7f793
- This app should manage more than just orders - Moved the 'Customer' model into this app
9 lines
245 B
Python
9 lines
245 B
Python
from django.views.generic import DetailView, ListView
|
|
|
|
from .models import CustomerOrder
|
|
|
|
class CustomerOrderIndex(ListView):
|
|
model = CustomerOrder
|
|
template_name = 'customer_orders/index.html'
|
|
context_object_name = 'customer_orders'
|