1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
from __future__ import annotations
from django.conf import settings
# template parameters
GET_SOLO_TEMPLATE_TAG_NAME: str = getattr(settings, "GET_SOLO_TEMPLATE_TAG_NAME", "get_solo")
SOLO_ADMIN_SKIP_OBJECT_LIST_PAGE: bool = getattr(settings, "SOLO_ADMIN_SKIP_OBJECT_LIST_PAGE", True)
# The cache that should be used, e.g. 'default'. Refers to Django CACHES setting.
# Set to None to disable caching.
SOLO_CACHE: str | None = None
SOLO_CACHE_TIMEOUT = 60 * 5
SOLO_CACHE_PREFIX = "solo"
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
|