TECH I.S. テックアイエスガイド エディター
template.html
views.py
footer.html
<!DOCTYPE html> <html> <body> <h1>Hello</h1> <p>This page contains a footer in a template.</p> {% include 'footer.html' %} <p>Check out the two templates to see what they look like, and views.py to see the reference to the child template.</p> </body> </html>
from django.http import HttpResponse from django.template import loader def testing(request): template = loader.get_template('template.html') return HttpResponse(template.render())
<p>You have reached the bottom of this page, thank you for your time.</p>
127.0.0.1:8000/testing
Try It | Online Web Tutorials