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.
)
Teniendo en cuenta que es código python, podemos hacer que esos paths se calculen a partir de paths relativos. Veamos como.
Es necesario incluir el siguiente código en el fichero settings.py
import os
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
Una vez añadido este código al fichero, ya podemos indicar el template de forma relativa.
TEMPLATE_DIRS = (
os.path.join(PROJECT_PATH, 'templates')
)
No hay comentarios:
Publicar un comentario