“STATIC DIRS DJANGO” Réponses codées

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

STATIC DIRS DJANGO

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

Fichiers statiques django

{% load static %}
<img src="{% static "my_app/example.jpg" %}" alt="My image">
Motionless Marten

statiques

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

dir statique dans django python

# in settings.py add the following :
STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
mortada elharrak

Réponses similaires à “STATIC DIRS DJANGO”

Questions similaires à “STATIC DIRS DJANGO”

Plus de réponses similaires à “STATIC DIRS DJANGO” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code