“Statische Dirs Django” Code-Antworten

Meine Django -Vorlage möchte die statische Datei nicht laden

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

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

statische Django -Dateien / Vorlagen

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

Statische Dirs Django

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

statische Django -Dateien

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

staticfiles

STATICFILES_DIRS = [BASE_DIR / 'static']
Virgin Programmer

statisches Dir in Django Python

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

Ähnliche Antworten wie “Statische Dirs Django”

Fragen ähnlich wie “Statische Dirs Django”

Weitere verwandte Antworten zu “Statische Dirs Django” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen