Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:
-
Story Points:1
-
Epic Link:
-
Sprint:Spring 2019 Sprint 6
Description
CSS's are not properly found when using Django "admin" page at testappstore.bioviz.org.
Possibly useful tips (guesses) about what could be going wrong:
- Probably this is related to static digital assets not be properly found by Apache Web server when users hit the admin link.
- These are probably stored within the Django installation location itself, which is residing in the virtual environment directory used to run Django by Apache.
Attachments
Activity
| Field | Original Value | New Value |
|---|---|---|
| Epic Link | IGBF-1388 [ 17463 ] |
| Assignee | Sai Charan Reddy Vallapureddy [ svallapu ] |
| Status | Open [ 1 ] | In Progress [ 3 ] |
| Status | In Progress [ 3 ] | Needs Testing [ 10002 ] |
| Resolution | Done [ 10000 ] | |
| Status | Needs Testing [ 10002 ] | Closed [ 6 ] |
| Workflow | Loraine Lab Workflow [ 18444 ] | Fall 2019 Workflow Update [ 20157 ] |
| Workflow | Fall 2019 Workflow Update [ 20157 ] | Revised Fall 2019 Workflow Update [ 22293 ] |
Add STATIC_ROOT in the settings.py
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
and execute below command to copy all static files to the above static root folder
python manage.py collectstatic
Note: Added this line to the AppStore documentation.