{% extends "base.html" %} {% load i18n jmbo_inclusion_tags %} {% block content %}
{% trans "Teams" %} | {{ score.HOMETEAM }} | {{ score.AWAYTEAM }} |
---|---|---|
{% trans "Score" %} | {{ score.HOMETEAMSCORE }} | {{ score.AWAYTEAMSCORE }} |
{% trans "Goals" %} | {% if score.HOMETEAMGOALS %} {% for goal in score.HOMETEAMGOALS %} {{ goal }} {% endfor %} {% endif %} | {% if score.AWAYTEAMGOALS %} {% for goal in score.AWAYTEAMGOALS %} {{ goal }} {% endfor %} {% endif %} |
{% trans "Cards" %} | {% if score.HOMETEAMCARDS %} {% for card in score.HOMETEAMCARDS %} {{ card }} {% endfor %} {% endif %} | {% if score.AWAYTEAMCARDS %} {% for card in score.AWAYTEAMCARDS %} {{ card }} {% endfor %} {% endif %} |
{% trans "Match status" %}: | {{ score.MATCHSTATUS }} |