“Chargez des fichiers statiques dans Django” Réponses codées

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

Chargez des fichiers statiques dans Django

{% load static %}
<img src="{% static 'my_app/example.jpg' %}" alt="My image">
Enthusiastic Emu

Mon modèle django ne veut pas charger le fichier statique

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "/static/")

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

Fichiers / modèles statiques django

from django.conf import settings
from django.conf.urls.static import static

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Nyn

Actifs statiques à Django

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'static'),
]
STATIC_ROOT = os.path.join(BASE_DIR, 'static_root')
 
 
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
Frail Fowl

Ajouter un fichier statique dans Django

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
Plain Pheasant

Réponses similaires à “Chargez des fichiers statiques dans Django”

Questions similaires à “Chargez des fichiers statiques dans Django”

Plus de réponses similaires à “Chargez des fichiers statiques dans Django” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code