Spaces:
Running
Running
Update templates/results.html
Browse files- templates/results.html +2 -2
templates/results.html
CHANGED
@@ -19,9 +19,9 @@
|
|
19 |
</tr>
|
20 |
</thead>
|
21 |
<tbody>
|
22 |
-
{% for
|
23 |
<tr class="border-b hover:bg-gray-50">
|
24 |
-
<td class="p-3">{{
|
25 |
<td class="p-3">{{ part.category }}</td>
|
26 |
<td class="p-3">Lines {{ part.location[0] }} to {{ part.location[1] }}</td>
|
27 |
<td class="p-3">
|
|
|
19 |
</tr>
|
20 |
</thead>
|
21 |
<tbody>
|
22 |
+
{% for part in parts %}
|
23 |
<tr class="border-b hover:bg-gray-50">
|
24 |
+
<td class="p-3">{{ part.index }}</td>
|
25 |
<td class="p-3">{{ part.category }}</td>
|
26 |
<td class="p-3">Lines {{ part.location[0] }} to {{ part.location[1] }}</td>
|
27 |
<td class="p-3">
|