{% extends "base.html" %} {% load i18n jmbo_inclusion_tags %} {% block content %}
{% trans "Live scores" %}
{% for score in live_scores %} {% if score.HOMETEAMGOALS or score.AWAYTEAMGOALS %} {% endif %} {% if score.HOMETEAMCARDS or score.AWAYTEAMCARDS %} {% endif %}
{% 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 }}

{% endfor %}
{% endblock %}