TECH I.S. テックアイエスガイド エディター
template.html
views.py
<!DOCTYPE html> <html> <body> {% with firstname="Tobias" %} <h1>Hello {{ firstname }}, how are you?</h1> {% endwith %} </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())
127.0.0.1:8000/testing
Try It | Online Web Tutorials