- apps/solutions: SolutionIndexPage/SolutionPage (mirrors products/cases) - apps/home: HomePage.subpage_types now includes products/solutions/cases index pages (previously only blog, blocking admin page creation) - pytest.ini + conftest.py (root_page/home_page fixtures) - unit tests for core (SEOablePage, FormBlock API repr), products, cases, forms (lead submit API)
9 lines
213 B
Python
9 lines
213 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SolutionsConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.solutions"
|
|
label = "solutions"
|
|
verbose_name = "解决方案"
|