mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Fix: Use local bootstrap static files
This commit is contained in:
parent
ef8465adad
commit
8be1765d42
1 changed files with 3 additions and 0 deletions
|
@ -165,6 +165,8 @@ if "LOCAL_ROUTERS" in globals():
|
||||||
|
|
||||||
# django-bootstrap3 config
|
# django-bootstrap3 config
|
||||||
BOOTSTRAP3 = {
|
BOOTSTRAP3 = {
|
||||||
|
"css_url": "/javascript/bootstrap/css/bootstrap.min.css",
|
||||||
|
"javascript_url": "/javascript/bootstrap/js/bootstrap.min.js",
|
||||||
"jquery_url": "/javascript/jquery/jquery.min.js",
|
"jquery_url": "/javascript/jquery/jquery.min.js",
|
||||||
"base_url": "/javascript/bootstrap/",
|
"base_url": "/javascript/bootstrap/",
|
||||||
"include_jquery": True,
|
"include_jquery": True,
|
||||||
|
@ -176,6 +178,7 @@ BOOTSTRAP_BASE_URL = "/javascript/bootstrap/"
|
||||||
STATICFILES_DIRS = (
|
STATICFILES_DIRS = (
|
||||||
os.path.join(BASE_DIR, "static").replace("\\", "/"),
|
os.path.join(BASE_DIR, "static").replace("\\", "/"),
|
||||||
"/usr/share/fonts-font-awesome/",
|
"/usr/share/fonts-font-awesome/",
|
||||||
|
"/usr/share/javascript/",
|
||||||
)
|
)
|
||||||
# Directory where the static files served by the server are stored
|
# Directory where the static files served by the server are stored
|
||||||
STATIC_ROOT = os.path.join(BASE_DIR, "static_files")
|
STATIC_ROOT = os.path.join(BASE_DIR, "static_files")
|
||||||
|
|
Loading…
Reference in a new issue