Fixed shop location in item listing template
parent
f723aaa40b
commit
8b244dd438
|
@ -6,8 +6,8 @@
|
||||||
<th>Price</th>
|
<th>Price</th>
|
||||||
<th>Price Per Item</th>
|
<th>Price Per Item</th>
|
||||||
{% if show_shop %}
|
{% if show_shop %}
|
||||||
<th>Shop Location</th>
|
|
||||||
<th>Shop</th>
|
<th>Shop</th>
|
||||||
|
<th>Shop Location</th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -19,8 +19,8 @@
|
||||||
<td>{{ item.price }}D</td>
|
<td>{{ item.price }}D</td>
|
||||||
<td>{{ item.normalized_price }}D</td>
|
<td>{{ item.normalized_price }}D</td>
|
||||||
{% if show_shop %}
|
{% if show_shop %}
|
||||||
<td>{{ item.shop.location }}</td>
|
|
||||||
<td><a href="{{ item.shop.link }}">{{ item.shop.name }}</a></td>
|
<td><a href="{{ item.shop.link }}">{{ item.shop.name }}</a></td>
|
||||||
|
<td>{{ item.shop.position }}</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue