{% if purchase.name %}{{ purchase.name }}{% else %}Unnamed purchase{% endif %} ({{ purchase.games.count }} games)
Price: {% if purchase.converted_price %} {{ purchase.converted_price | floatformat }} {{ purchase.converted_currency }} {% else %} None {% endif %} ({{ purchase.price | floatformat }} {{ purchase.price_currency }})

Items:

    {% for game in purchase.games.all %}
  • {% endfor %}