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>        
127.0.0.1:8000/members/testing