schon/payments/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

15 lines
411 B
Python

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