forked from DGNum/gestioCOF
1499c0bced
K-Fêt - Wagtail - Page content becomes a StreamField. - GroupTeam snippet becomes a block for stream field. - Navigation menu moved becomes a "flatmenu", preventing possible future conflicts. - Page layout can be modified in wagtail admin. K-Fêt - Add shorthands for ukf account balance/article price. - Cleaning stylesheets and templates.
22 lines
508 B
HTML
22 lines
508 B
HTML
<table class="table table-hover table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<td>Date</td>
|
|
<td>Stock</td>
|
|
<td>Erreur</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for inventoryart in inventoryarts %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "kfet.inventory.read" inventoryart.inventory.pk %}">
|
|
{{ inventoryart.inventory.at }}
|
|
</a>
|
|
</td>
|
|
<td>{{ inventoryart.stock_new }}</td>
|
|
<td>{{ inventoryart.stock_error }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|