openbackloggery/collection/games/templates/games/index.html

16 lines
391 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h1>{% trans "Games" %}</h1>
{% if non_excluded_games %}
<ul>
{% for game in non_excluded_games %}
<li><strong>{{ game.collection.shortname }}</strong> - {{ game.name }}</li>
{% endfor %}
</ul>
{% else %}
<p>{% trans "No game found." %}</p>
{% endif %}
{% endblock %}