Affichage des noms courts de console (plateforme) à côté de chaque jeu

master
Olivier DOSSMANN 2018-01-16 18:52:13 +01:00
parent eab50caca9
commit 63bed8818e
1 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
{% if playing_games %} {% if playing_games %}
<ul> <ul>
{% for playing in playing_games %} {% for playing in playing_games %}
<li>{{ playing.name }}</li> <li><strong>{{ playing.collection.shortname }}</strong> - {{ playing.name }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
@ -18,7 +18,7 @@
{% if non_excluded_games %} {% if non_excluded_games %}
<ul> <ul>
{% for game in non_excluded_games %} {% for game in non_excluded_games %}
<li>{{ game.name }}</li> <li><strong>{{ game.collection.shortname }}</strong> - {{ game.name }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% else %} {% else %}
@ -33,7 +33,7 @@
{% for timeline in date.list|dictsortreversed:"id" %} {% for timeline in date.list|dictsortreversed:"id" %}
<li> <li>
<strong>{{ timeline.get_status_display }} :</strong> {{ timeline.item.name }} <strong>{{ timeline.get_status_display }} :</strong> {{ timeline.item.name }}
({{ timeline.item.collection.name }}) (<strong>{{ timeline.item.collection.shortname }}</strong>)
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>