mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-02 20:01:51 +02:00
- 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)
16 lines
502 B
Python
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
|