mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-04 06:06:19 +01: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")
|