Comment ajouter des fichiers statiques dans Django
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_DIRS = [
BASE_DIR / 'static'
]
Ashamed Anaconda