mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
14 lines
280 B
Python
14 lines
280 B
Python
"""
|
|
Django app configuration for custom_css
|
|
"""
|
|
|
|
# Django
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CustomCSSConfig(AppConfig):
|
|
name = "allianceauth.custom_css"
|
|
label = "custom_css"
|
|
verbose_name = _("Custom CSS")
|