remove loop.index

Aevann 2024-04-18 22:16:34 +02:00
parent 650b5bca44
commit 66a8c857c6
2 changed files with 0 additions and 4 deletions

View File

@ -6,7 +6,6 @@
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>First commented on</th>
</tr>
@ -14,7 +13,6 @@
{% for user, comment_id, comment_created_utc in users %}
{% if can_see(v, user) %}
<tr>
<td>{{loop.index}}</td>
<td>{% include "user_in_table.html" %}</td>
<td><a href="/comment/{{comment_id}}" data-time="{{comment_created_utc}}"></td>
</tr>

View File

@ -49,7 +49,6 @@
<table class="ping-groups">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th class="disable-sort-click"></th>
@ -65,7 +64,6 @@
{% for membership in memberships %}
{% if can_see(v, membership.user) %}
<tr id="{{membership.user_id}}">
<td id="counter-{{membership.user_id}}">{{loop.index}}</td>
{% set is_owner = membership.user_id == group.owner_id %}
<td {% if (is_owner or membership.is_mod) and not membership.user.earlylife %}class="unbreakable"{% endif %}>
{% with user=membership.user %}