schon/core/apps.py
Egor fureunoir Gorbunov 3ab95e9b56 Features: 1) Added icons, divider titles, priorities, and hide settings to apps; 2) Introduced Daisy settings file for customizable UI configuration; 3) Implemented new CSS styles for paginator component with hover and active states.
Fixes: 1) Updated AutoSlugField to enhance slug generation logic in core models.

Extra: 1) Removed redundant Daisy settings from base configurations; 2) Minor code cleanup and organization.
2025-06-21 18:35:34 +03:00

17 lines
481 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "core"
verbose_name = _("core")
icon = "fa fa-solid fa-star"
divider_title = _("eVibes Engine")
priority = 88
hide = False
# noinspection PyUnresolvedReferences
def ready(self):
import core.elasticsearch.documents
import core.signals # noqa: F401