forked from 42CTF/website
removed the is_member attribute for campus name
This commit is contained in:
parent
7cd43ca35f
commit
09118cac7a
|
@ -1,7 +1,6 @@
|
|||
{% extends 'base.html' %}
|
||||
{% load i18n %}
|
||||
{% block content %}
|
||||
{% load key_value %}
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div>
|
||||
|
@ -18,7 +17,7 @@
|
|||
{% for name, score in scores.items %}
|
||||
<tr>
|
||||
<th scope="row"># {{ forloop.counter0|add:1 }}</th>
|
||||
<th><a class="profile_link {{is_member}}" href="{% url 'scoreboard:campus' campus=name %}"> {{ name }}</a></th>
|
||||
<th><a href="{% url 'scoreboard:campus' campus=name %}"> {{ name }}</a></th>
|
||||
<td>{{ score}}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in New Issue