fix: Variables in template
This commit is contained in:
@@ -24,10 +24,10 @@
|
|||||||
{% for cheater in cheaters %}
|
{% for cheater in cheaters %}
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row" class="text-center">{{ loop.index }}</th>
|
<th scope="row" class="text-center">{{ loop.index }}</th>
|
||||||
<td><a href="{{ request.script_root }}/admin/challenges/{{ cheater.challengeid }}">{{ cheater.challenge_name() }}</a></td>
|
<td><a href="{{ request.script_root }}/admin/challenges/{{ cheater.challenge.id }}">{{ cheater.challenge.name }}</a></td>
|
||||||
<td><a href="{{ request.script_root }}/teams/{{ cheater.cheatteamid }}">{{ cheater.cheated_team_name() }}</a></td>
|
<td><a href="{{ request.script_root }}/admin/users/{{ cheater.cheater.id }}">{{ cheater.cheater.name }}</a></td>
|
||||||
<td><a href="{{ request.script_root }}/teams/{{ cheater.sharerteamid }}">{{ cheater.shared_team_name() }}</a></td>
|
<td><a href="{{ request.script_root }}/admin/users/{{ cheater.helper.id }}">{{ cheater.helper.name }}</a></td>
|
||||||
<td><a href="{{ request.script_root }}/teams/{{ cheater.sharerteamid }}">{{ cheater.shared_team_name() }}</a></td>
|
<td>{{ cheater.flag.content }}</td>
|
||||||
<td>{{cheater.date}}</td>
|
<td>{{cheater.date}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
Reference in New Issue
Block a user