fixed paths and added Cargo.lock

This commit is contained in:
2026-03-26 22:25:58 +01:00
parent 453f48804f
commit 012e6d7b48
3 changed files with 2947 additions and 3 deletions

2944
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
{% block content %} {% block content %}
<div class="back-nav"> <div class="back-nav">
<a href="/">&larr; Back to Leaderboard</a> <a href="../">&larr; Back to Leaderboard</a>
</div> </div>
<div class="report-card"> <div class="report-card">

View File

@@ -16,9 +16,9 @@
</thead> </thead>
<tbody> <tbody>
{% for report in reports %} {% for report in reports %}
<tr class="clickable-row" onclick="window.location='/report/{{ report.id }}';"> <tr class="clickable-row" onclick="window.location='report/{{ report.id }}';">
<td data-label="MT Score" class="score-cell"> <td data-label="MT Score" class="score-cell">
<a href="/report/{{ report.id }}">{{ report.score }}</a> <a href="report/{{ report.id }}">{{ report.score }}</a>
</td> </td>
<td data-label="Threads">{{ report.cores }}</td> <td data-label="Threads">{{ report.cores }}</td>
<td data-label="RAM">{{ report.ram }}</td> <td data-label="RAM">{{ report.ram }}</td>