website/hub/services/admin/__init__.py

13 lines
298 B
Python
Raw Permalink Normal View History

2025-05-26 11:33:04 +02:00
# Admin module initialization
# Import all admin classes to register them with Django admin
2025-06-06 14:53:49 +02:00
from .articles import *
2025-05-26 11:33:04 +02:00
from .base import *
from .content import *
from .images import *
2025-05-26 11:33:04 +02:00
from .leads import *
from .pricing import *
from .providers import *
2025-07-08 11:59:19 +02:00
from .widgets import *
2025-05-26 11:33:04 +02:00
from .services import *