“Cómo crear carpeta de plantilla en django” Código de respuesta

hacer una nueva carpeta de aplicaciones en plantillas de django dir

#settings.py
TEMPLATES = [
    {
        ...
        'DIRS': [os.path.join(BASE_DIR, 'templates'),
                 os.path.join(BASE_DIR, 'templates', 'the_folder_you_created'),
                ...
                ]
    }
]
Proud Pintail

Cómo crear carpeta de plantilla en django

PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
    os.path.join(PROJECT_ROOT, 'templates').replace('\\','/'),
)

# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
#     'django.template.loaders.eggs.Loader',
)
Stockholm

Respuestas similares a “Cómo crear carpeta de plantilla en django”

Preguntas similares a “Cómo crear carpeta de plantilla en django”

Más respuestas relacionadas con “Cómo crear carpeta de plantilla en django” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código