Private
Public Access
1
0

time team scraping works

This commit is contained in:
Sander Roosendaal
2022-06-25 16:07:11 +02:00
parent 0b88f3c861
commit 44d3dfc919
8 changed files with 172 additions and 8 deletions

View File

@@ -18,6 +18,9 @@
<td>{{ athlete.last_name }}</td>
<td>{{ athlete.club }}</td>
<td>{{ athlete.gender }}</td>
{% if user.is_authenticated and user.is_staff %}
<td><a href="/admin/boatmovers/athlete/{{ athlete.id }}/change/">edit</a></td>
{% endif %}
</tr>
{% endfor %}
</table>

View File

@@ -14,6 +14,11 @@
<tr>
<td>{{ result.order }}</td>
<td><a href="/boatmovers/crew/{{ result.crew.id }}/">{{ result.crew.name }}</a></td>
{% if result.crew.id in duplicate_crews %}
<td>!</td>
{% elif result.crew.id in duplicate_athletes_crews %}
<td>!</td>
{% endif %}
</tr>
{% endfor %}
</table>