la-chariotte/la_chariotte/order/views/__init__.py
Alexis Métaireau b4df449bcb Small code & comments changes.
- removed comments when they were not helping understanding the code.
- changed some variable names to ease readability
- make use of dict.update() to ease readability
- use dict comprehensions when possible to ease readability
- changed the naming from intial to origin (bad translation from english)
2023-08-12 21:00:42 +02:00

16 lines
502 B
Python

from .grouped_order import (
DownloadGroupedOrderSheetView,
ExportGroupedOrderEmailAddressesToCSVView,
ExportGroupedOrderToCSVView,
GroupedOrderAddItemsView,
GroupedOrderCreateView,
GroupedOrderDeleteView,
GroupedOrderDetailView,
GroupedOrderDuplicateView,
GroupedOrderExportView,
GroupedOrderOverview,
GroupedOrderUpdateView,
IndexView,
)
from .item import ItemCreateView, ItemDeleteView
from .order import OrderDeleteView, OrderDetailView, place_order