Assets JS/CSS/Media


Prerequites


settings.py - /path/projectdir/theproject
STATIC_ROOT = BASE_DIR / '/static/'
STATIC_URL = 'static/'

Usage Examples


/path/theproject/theapp/templates/abc.html


app.js - /path/theproject/static/js
function alerty(x) {
    alert(x);
}

style.css - /path/theproject/static/css
h1 { font-family: Arial; }