InvenTree/InvenTree/customer/views.py
Oliver 8856d7f793 Renamed 'customer-order' app to 'customer'
- This app should manage more than just orders
- Moved the 'Customer' model into this app
2018-04-17 23:39:53 +10:00

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'