“Agregar archivo estático en django” Código de respuesta

Cómo agregar archivos estáticos en django

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

Agregar archivo estático en django

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

Agregar archivo estático en django

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_DIRS = [
    BASE_DIR / 'static'
]
# add this code in settings.py
Combative Curlew

archivos estáticos django

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

Respuestas similares a “Agregar archivo estático en django”

Preguntas similares a “Agregar archivo estático en django”

Más respuestas relacionadas con “Agregar archivo estático en django” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código