“URL estático django” Respostas de código

Meu modelo de django não quer carregar o arquivo estático

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

STATICFILES_DIRS = ( 
    STATIC_ROOT,        
)
Cooperative Copperhead

Django estático arquivos / modelos

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

Importar estático em URLs de Django

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

urlpatterns = [
    # ... the rest of your URLconf goes here ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Clever Constrictor

Django estático arquivos / modelos

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
    '/var/www/static/',
]
Nyn

arquivos estáticos django

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

URL estático 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)
Helpless Hamster

Respostas semelhantes a “URL estático django”

Perguntas semelhantes a “URL estático django”

Mais respostas relacionadas para “URL estático django” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código