refactor admin into several files

This commit is contained in:
Tobias Brunner 2025-05-26 11:33:04 +02:00
parent d9a04655ed
commit a3cf1cc590
No known key found for this signature in database
7 changed files with 340 additions and 184 deletions

View file

@ -0,0 +1,9 @@
# Admin module initialization
# Import all admin classes to register them with Django admin
from .base import *
from .content import *
from .leads import *
from .pricing import *
from .providers import *
from .services import *