{% extends "base.html" %} {% block title %}Games{% endblock %} {% block content %} <ul> {% for game in object_list %} <li><a href="{{game.get_absolute_url}}">{{game}}</a></li> {% endfor %} </ul> {% endblock %}