{% extends "base.html" %} {% block title %}Search for {{request.GET.q}}{% endblock %} {% block content %} {% regroup results 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 %}