Skip to content
Snippets Groups Projects
Unverified Commit 30297847 authored by Fredrik Jonsson's avatar Fredrik Jonsson Committed by GitHub
Browse files

Merge pull request #2377 from HyphaApp/enhancement/percentage_in_determined_applications

Percentage in determined applications.
parents a7b050b9 5b5801cd
No related branches found
No related tags found
No related merge requests found
{% 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 %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment