Queremos regalarte la mejor información que encontramos online. Nosotros deseamos que te sirva de ayuda y si deseas compartir alguna mejora siente la libertad de hacerlo..
Ejemplo 1: mi plantilla de django no quiere cargar el static expediente
STATIC_URL ='/static/'
STATIC_ROOT = os.path.join(BASE_DIR,"/static/")
STATICFILES_DIRS =(
STATIC_ROOT,)
Ejemplo 2: Django static archivos / plantillas
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)
Ejemplo 3: Django static archivos
% load static %<img src="% static "my_app/example.jpg" %" alt="My image">
Ejemplo 4: cómo usar static archivos en django
#In your templates, use the static template tag to build the URL for the given relative path using the configured STATICFILES_STORAGE.% load static %<img src="% static 'my_app/example.jpg' %" alt="My image">
Ejemplo 5: agregar static archivo en django
STATICFILES_DIRS =[
BASE_DIR /"static",'/var/www/static/',]
Ejemplo 6: archivos estáticos
STATICFILES_DIRS =[BASE_DIR /'static']
Al final de todo puedes encontrar las críticas de otros desarrolladores, tú además tienes la habilidad mostrar el tuyo si dominas el tema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)