2019-01-14 01:27:48 +00:00
|
|
|
<table id="itemlisting_table" class="table table-hover link-table">
|
|
|
|
<thead class="bg-dark">
|
|
|
|
<tr>
|
|
|
|
<th>Item Name</th>
|
|
|
|
<th>Amount</th>
|
|
|
|
<th>Price</th>
|
|
|
|
<th>Price Per Item</th>
|
|
|
|
{% if show_shop %}
|
|
|
|
<th>Shop Location</th>
|
|
|
|
<th>Shop</th>
|
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for item in itemlisting_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ item.item_name }} </td>
|
|
|
|
<td>{{ item.amount }}</td>
|
|
|
|
<td>{{ item.price }}D</td>
|
|
|
|
<td>{{ item.normalized_price }}D</td>
|
|
|
|
{% if show_shop %}
|
|
|
|
<td>{{ item.shop.location }}</td>
|
2019-03-02 17:48:28 +00:00
|
|
|
<td><a href="{{ item.shop.link }}">{{ item.shop.name }}</a></td>
|
2019-01-14 01:27:48 +00:00
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
$('#itemlisting_table').DataTable();
|
|
|
|
});
|
|
|
|
</script>
|