Compare commits

..

No commits in common. "1771f3c2bbe61fca08aaf5a3d68c2a790c33c145" and "7cd43ca35f1f4847f1ba26e9b2af6076776c9746" have entirely different histories.

1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% load i18n %} {% load i18n %}
{% block content %} {% block content %}
{% load key_value %}
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<div> <div>
@ -17,7 +18,7 @@
{% for name, score in scores.items %} {% for name, score in scores.items %}
<tr> <tr>
<th scope="row"># {{ forloop.counter0|add:1 }}</th> <th scope="row"># {{ forloop.counter0|add:1 }}</th>
<th><a href="{% url 'scoreboard:campus' campus=name %}"> {{ name }}</a></th> <th><a class="profile_link {{is_member}}" href="{% url 'scoreboard:campus' campus=name %}"> {{ name }}</a></th>
<td>{{ score}}</td> <td>{{ score}}</td>
</tr> </tr>
{% endfor %} {% endfor %}