feat: added categories

This commit is contained in:
2024-12-31 11:19:28 +01:00
parent eae54d5198
commit 3de6bbcc29
16 changed files with 166 additions and 36 deletions
+5 -4
View File
@@ -1,16 +1,17 @@
from decimal import Decimal
from django.contrib.auth import get_user_model
from shop.models import (
Cart,
CustomerAddress,
Order,
OrderLine,
Product,
ProductBatch,
Cart,
CustomerAddress,
ShippingMethod,
ProductPrice,
ShippingMethod,
)
from django.contrib.auth import get_user_model
User = get_user_model()