Skip to content

Commit

Permalink
templates: Do not highlight links in results table
Browse files Browse the repository at this point in the history
  • Loading branch information
tbabej committed Nov 16, 2015
1 parent 31ac9d6 commit 938ce74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions competitions/templates/competitions/season_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h4>
{% if solution == None %}
{% if user_organizes_this_competition %}
{% with series.problems.all|index:forloop.counter0 as problem %}
<a href="{% url 'admin:problems_usersolution_add' %}?user={{ result_row.0.pk }}&problem={{ problem.pk }}">
<a style="color:inherit;" href="{% url 'admin:problems_usersolution_add' %}?user={{ result_row.0.pk }}&problem={{ problem.pk }}">
{% endwith %}
--
</a>
Expand All @@ -150,7 +150,7 @@ <h4>
{% endif %}
{% else %}
{% if user_organizes_this_competition %}
<a href="{% url 'admin:problems_usersolution_change' solution.pk %}">
<a style="color:inherit;" href="{% url 'admin:problems_usersolution_change' solution.pk %}">
{% if solution.score == None %} ? {% else %}{{ solution.score }}{% endif %}
</a>
{% else %}
Expand Down Expand Up @@ -255,7 +255,7 @@ <h4>
{% if solution == None %}
{% if user_organizes_this_competition %}
{% with series.problems.all|index:forloop.counter0 as problem %}
<a href="{% url 'admin:problems_usersolution_add' %}?user={{ result_row.0.pk }}&problem={{ problem.pk }}">
<a style="color:inherit;" href="{% url 'admin:problems_usersolution_add' %}?user={{ result_row.0.pk }}&problem={{ problem.pk }}">
{% endwith %}
--
</a>
Expand All @@ -264,7 +264,7 @@ <h4>
{% endif %}
{% else %}
{% if user_organizes_this_competition %}
<a href="{% url 'admin:problems_usersolution_change' solution.pk %}">
<a style="color:inherit;" href="{% url 'admin:problems_usersolution_change' solution.pk %}">
{% if solution.score == None %} ? {% else %}{{ solution.score }}{% endif %}
</a>
{% else %}
Expand Down

0 comments on commit 938ce74

Please sign in to comment.