diff --git a/games/templates/stats.html b/games/templates/stats.html
index 69f0a93..f900a58 100644
--- a/games/templates/stats.html
+++ b/games/templates/stats.html
@@ -3,10 +3,14 @@
{% partialdef purchase-name %}
{% if purchase.type != 'game' %}
- {{ purchase.name }} ({{ purchase.first_game.name }} {{ purchase.get_type_display }})
+ {% if purchase.game_name %}{{ purchase.game_name }}{% else %}{{ purchase.name }}{% endif %} ({{ purchase.first_game.name }} {{ purchase.get_type_display }})
{% else %}
-
+ {% if purchase.game_name %}
+
+ {% else %}
+
+ {% endif %}
{% endif %}
{% endpartialdef %}
@@ -196,7 +200,7 @@
{% for purchase in all_finished_this_year %}
- {{ purchase.game_name }} |
+ {% partial purchase-name %} |
{{ purchase.date_finished | date:"d/m/Y" }} |
{% endfor %}