mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-04 14:16:21 +01:00
12 lines
241 B
Python
12 lines
241 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BootstrapThemeConfig(AppConfig):
|
|
name = "allianceauth.theme.bootstrap"
|
|
label = "bootstrap"
|
|
version = "5.3.3"
|
|
verbose_name = f"Bootstrap v{version}"
|
|
|
|
def ready(self):
|
|
pass
|