Browse Source

Add empty theming app

rafalp 6 years ago
parent
commit
adc537e598
3 changed files with 9 additions and 0 deletions
  1. 1 0
      devproject/settings.py
  2. 1 0
      misago/theming/__init__.py
  3. 7 0
      misago/theming/apps.py

+ 1 - 0
devproject/settings.py

@@ -180,6 +180,7 @@ INSTALLED_APPS = [
     "misago.cache",
     "misago.core",
     "misago.conf",
+    "misago.theming",
     "misago.markup",
     "misago.legal",
     "misago.categories",

+ 1 - 0
misago/theming/__init__.py

@@ -0,0 +1 @@
+default_app_config = "misago.theming.apps.MisagoThemingConfig"

+ 7 - 0
misago/theming/apps.py

@@ -0,0 +1,7 @@
+from django.apps import AppConfig
+
+
+class MisagoThemingConfig(AppConfig):
+    name = "misago.theming"
+    label = "misago_theming"
+    verbose_name = "Misago Theming"