diff --git a/hypha/apply/funds/templates/funds/includes/round-block-listing.html b/hypha/apply/funds/templates/funds/includes/round-block-listing.html index bbc0de45008ce1cb53db17c020dc06e60126aef6..6136b584db97e8bc638e1d1442f25ac9d835ae11 100644 --- a/hypha/apply/funds/templates/funds/includes/round-block-listing.html +++ b/hypha/apply/funds/templates/funds/includes/round-block-listing.html @@ -1,3 +1,5 @@ +{% load i18n %} + <ul class="round-block"> {% for round in rounds %} {% if forloop.counter0 < 5 %} @@ -12,17 +14,17 @@ {% endif %} </p> <p class="round-block__determination"> - {% if round.progress is None%} + {% if round.progress is None %} - {% else %} - {{ round.progress }}% Determined + {{ round.progress }}% {% trans 'Determined' %} ({{ round.closed_submissions }}/{{ round.total_submissions }}) {% endif %} </p> - <a class="round-block__view" href="{% url 'apply:rounds:detail' pk=round.pk %}">View</a> + <a class="round-block__view" href="{% url 'apply:rounds:detail' pk=round.pk %}">{% trans 'View' %}</a> </li> {% else %} <li class="round-block__item round-block__item--more"> - <a href="{% url 'apply:rounds:list' %}{{ query }}">Show all</a> + <a href="{% url 'apply:rounds:list' %}{{ query }}">{% trans 'Show all' %}</a> </li> {% endif %} {% empty %}