Browse Source

Some basic hello world! view.

Rafał Pitoń 11 years ago
parent
commit
8055f6b9a5
2 changed files with 4 additions and 3 deletions
  1. 3 3
      misago/conf/defaults.py
  2. 1 0
      misago/templates/misago/front/base.html

+ 3 - 3
misago/conf/defaults.py

@@ -35,15 +35,15 @@ MIDDLEWARE_CLASSES = (
 # Register Misago directories
 
 LOCALE_PATHS = (
-    os.path.join(MISAGO_BASE_DIR, '../locale'),
+    os.path.join(MISAGO_BASE_DIR, 'locale'),
 )
 
 STATICFILES_DIRS = (
-    os.path.join(MISAGO_BASE_DIR, '../static'),
+    os.path.join(MISAGO_BASE_DIR, 'static'),
 )
 
 TEMPLATE_DIRS = (
-    os.path.join(MISAGO_BASE_DIR, '../templates'),
+    os.path.join(MISAGO_BASE_DIR, 'templates'),
 )
 
 

+ 1 - 0
misago/templates/misago/front/base.html

@@ -0,0 +1 @@
+Hello world, I'm placeholder template!