Answers for "how to include templates in django"

1

how to connect templates in django

# Template directory setting
TEMPLATE_DIRS = (
    os.path.join(os.path.dirname(__file__), 'templates'),
)
Posted by: Guest on April-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language