TECH I.S. テックアイエスガイド エディター
template.html
views.py
<!DOCTYPE html> <html> <body> {% for x in cars %} <h1>{{ x.brand }}</h1> <p>{{ x.model }}</p> <p>{{ x.year }}</p> {% endfor %} <p>In views.py you can see what the cars variable looks like.</p> </body> </html>
from django.http import HttpResponse from django.template import loader def testing(request): template = loader.get_template('template.html') context = { 'cars': [ { 'brand': 'Ford', 'model': 'Mustang', 'year': '1964', }, { 'brand': 'Ford', 'model': 'Bronco', 'year': '1970', }, { 'brand': 'Volvo', 'model': 'P1800', 'year': '1964', }] } return HttpResponse(template.render(context, request))
127.0.0.1:8000/testing
Try It | Online Web Tutorials