qmsk_www/settings/site.py
changeset 234 70b425280964
parent 233 f5227f26231b
--- a/qmsk_www/settings/site.py	Sat Oct 04 13:32:59 2014 +0300
+++ b/qmsk_www/settings/site.py	Sat Oct 04 13:41:39 2014 +0300
@@ -17,11 +17,19 @@
 # https://docs.djangoproject.com/en/1.7/howto/static-files/
 STATIC_URL = '/static/'
 STATICFILES_DIRS = (
+    # django project files
     './qmsk_www/static',
+
+    # shared between django projects
+    './static',
 )
 
 ## Site templates
 TEMPLATE_DIRS = (
+    # django project files
     './qmsk_www/templates',
+
+    # shared between django projects
+    './templates',
 )