Answers for "django include template"

0

include one django template

{% include "template_name.html" %}
Posted by: Guest on June-25-2021
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