{% extends "base.html" %} {% block title %} {{ _("Game Support for %(username)s", username=user.display_name) }} {% endblock %} {% block content %} {{ _("Help") }}

{{ self.title() }}

{{ _("You should specify the games supported by your mods and texture packs.") }} {{ _("Specifying game support makes it easier for players to find your content.") }}

{% for package in packages %}
{{ package.title }}
{% set supported_games = package.getSortedSupportedGames() %} {% if supported_games %} {% for support in supported_games %} {{ _("%(title)s by %(display_name)s", title=support.game.title, display_name=support.game.author.display_name) }} {% endfor %} {% else %} {{ _("None listed, assumed to support all games") }} {% endif %}
{% else %}

{{ _("Nothing to do :)") }}

{% endfor %}
{% endblock %}