Fixed shop location in item listing template

doc_update
Joey Hines 2019-10-05 10:44:43 -05:00
parent f723aaa40b
commit 8b244dd438
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
<th>Price</th>
<th>Price Per Item</th>
{% if show_shop %}
<th>Shop Location</th>
<th>Shop</th>
<th>Shop Location</th>
{% endif %}
</tr>
</thead>
@ -19,8 +19,8 @@
<td>{{ item.price }}D</td>
<td>{{ item.normalized_price }}D</td>
{% if show_shop %}
<td>{{ item.shop.location }}</td>
<td><a href="{{ item.shop.link }}">{{ item.shop.name }}</a></td>
<td>{{ item.shop.position }}</td>
{% endif %}
</tr>
{% endfor %}