bornhack-website/src/backoffice/templates/village_to_order.html

35 lines
735 B
HTML

{% extends 'base.html' %}
{% load commonmark %}
{% load static %}
{% load imageutils %}
{% block content %}
<div class="row">
<h2>Village Gear To Order</h2>
<div class="lead">
This is a list of village gear to order from our supplier
</div>
<div>
This table shows all different village stuff that needs to be ordered
</div>
</div>
<br>
<div class="row">
<table class="table table-hover datatable">
<thead>
<tr>
<th>Type</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
{% for key, val in village.items %}
<tr>
<td>{{ key }}</td>
<td>{{ val }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock content %}