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 *
|
2025-07-04 16:28:13 +02:00
|
|
|
from .images import *
|
2025-05-26 11:33:04 +02:00
|
|
|
from .leads import *
|
|
|
|
from .pricing import *
|
|
|
|
from .providers import *
|
|
|
|
from .services import *
|