{% load staticfiles %} {% load humanize %}
{% for game in gameslist %} {% if game.highlighted and highlight_games %}
{% else %}
{% endif %}

{{game.name}}

Release year: {{game.release_year}}

Developer: {{game.developer}}

Publisher: {{game.published_by}}

{% if game.pricelist.price_per_unit %}

Price: ${{game.pricelist.price_per_unit|floatformat:2|intcomma}}

{% else %}

Price: Not available

{% endif %}
Add to cart
{% endfor %}