“arquivos estáticos em django” Respostas de código

Como adicionar arquivos estáticos em django

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_DIRS = [
    BASE_DIR / 'static'
]
Ashamed Anaconda

Carregar arquivos estáticos em django

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

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

Ativos estáticos em 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

arquivos estáticos em django

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
Different Deer

Respostas semelhantes a “arquivos estáticos em django”

Perguntas semelhantes a “arquivos estáticos em django”

Mais respostas relacionadas para “arquivos estáticos em django” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código