mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-05 06:36:19 +01:00
12 lines
240 B
Python
12 lines
240 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DarklyThemeConfig(AppConfig):
|
|
name = "allianceauth.theme.darkly"
|
|
label = "darkly"
|
|
version = "5.3.3"
|
|
verbose_name = f"Bootswatch Darkly v{version}"
|
|
|
|
def ready(self):
|
|
pass
|