mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
media_url bug fix
This commit is contained in:
parent
51bfb5d6ce
commit
bb67127c3d
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ STATIC_URL = '/static/'
|
|||
# Directory where the media files served by the server are stored
|
||||
MEDIA_ROOT = os.path.join(BASE_DIR, 'media').replace('\\', '/')
|
||||
# The URL to access the static files
|
||||
MEDIA_URL = '/media/'
|
||||
MEDIA_URL = os.path.join(BASE_DIR,'/media/')
|
||||
|
||||
# Models to use for graphs
|
||||
GRAPH_MODELS = {
|
||||
|
|
Loading…
Reference in a new issue