broadfield-dev commited on
Commit
75b3e95
·
verified ·
1 Parent(s): fa9257f

Update templates/results.html

Browse files
Files changed (1) hide show
  1. templates/results.html +2 -2
templates/results.html CHANGED
@@ -19,9 +19,9 @@
19
  </tr>
20
  </thead>
21
  <tbody>
22
- {% for i, part in enumerate(parts, 1) %}
23
  <tr class="border-b hover:bg-gray-50">
24
- <td class="p-3">{{ i }}</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">
 
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">