{% extends "base.html" %} {% block title %}Featured games{% endblock %} {% block content %} {% regroup object_list by game_system as game_system_list %} {% for system in game_system_list %}

{{system.grouper.name}} »

{% for game in system.list %}
Card image cap
{{game.name}}

{{game.description|truncatechars:220}}

Play Download
{% endfor %}
{% endfor %} {% endblock %}