##// END OF EJS Templates
developer version fixes....
Ilyas -
r49:8537e179 default
parent child Browse files
Show More
@@ -47,12 +47,12 b' USE_TZ = True'
47 47
48 48 # Absolute filesystem path to the directory that will hold user-uploaded files.
49 49 # Example: "/home/media/media.lawrence.com/media/"
50 MEDIA_ROOT = ''
50 MEDIA_ROOT = './media/'
51 51
52 52 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
53 53 # trailing slash.
54 54 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
55 MEDIA_URL = ''
55 MEDIA_URL = '/media/'
56 56
57 57 # Absolute path to the directory static files should be collected to.
58 58 # Don't put anything in this directory yourself; store your static files
@@ -176,4 +176,4 b" SITE_NAME = 'Neboard'"
176 176 THEMES = [
177 177 ('md', 'Mystic Dark'),
178 178 ('sw', 'Snow White') ]
179 DEFAULT_THEME = 'md' No newline at end of file
179 DEFAULT_THEME = 'md'
@@ -18,4 +18,6 b" urlpatterns = patterns('',"
18 18 # Uncomment the next line to enable the admin:
19 19 url(r'^admin/', include(admin.site.urls)),
20 20 url(r'^', include('boards.urls')),
21 )
21 ) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
22
23
General Comments 0
You need to be logged in to leave comments. Login now