Skip to content

Commit

Permalink
Extent hall of fame
Browse files Browse the repository at this point in the history
  • Loading branch information
VGR6479 committed Jul 30, 2024
1 parent 924d200 commit b9f8623
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions gerobug_dashboard/templates/halloffame.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ <h1>Hall Of Fame</h1>
<table id="leaderboard">
<thead>
<tr>
<th>Rank</th>
<th>Bounty Hunter</th>
<th>Points</th>
<th style="width:20%">Rank</th>
<th style="width:50%">Bounty Hunter</th>
<th style="width:30%">Points</th>
</tr>
</thead>
</table>
Expand All @@ -82,9 +82,9 @@ <h1>Hall Of Fame</h1>
<table id="leaderboard">
{% for bughunter in bughunters|slice:":1000" %}
<tr>
<td>{{ forloop.counter }}</td>
<td>{{ bughunter.hunter_username }}</td>
<td>{{ bughunter.hunter_scores }}</td>
<td style="width:20%">{{ forloop.counter }}</td>
<td style="width:52%">{{ bughunter.hunter_username }}</td>
<td style="width:28%">{{ bughunter.hunter_scores }}</td>
</tr>
{% endfor %}
</table>
Expand Down
12 changes: 6 additions & 6 deletions gerobug_web/templates/halloffame.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ <h1>Hall Of Fame</h1>
<table id="leaderboard">
<thead>
<tr>
<th>Rank</th>
<th>Bounty Hunter</th>
<th>Points</th>
<th style="width:20%">Rank</th>
<th style="width:50%">Bounty Hunter</th>
<th style="width:30%">Points</th>
</tr>
</thead>
</table>
Expand All @@ -82,9 +82,9 @@ <h1>Hall Of Fame</h1>
<table id="leaderboard">
{% for bughunter in bughunters|slice:":50" %}
<tr>
<td>{{ forloop.counter }}</td>
<td>{{ bughunter.hunter_username }}</td>
<td>{{ bughunter.hunter_scores }}</td>
<td style="width:20%">{{ forloop.counter }}</td>
<td style="width:52%">{{ bughunter.hunter_username }}</td>
<td style="width:28%">{{ bughunter.hunter_scores }}</td>
</tr>
{% endfor %}
</table>
Expand Down

0 comments on commit b9f8623

Please sign in to comment.