Files
PyRIGS/assets/templates/supplier_list.html
Matthew Smith 8c60f6cb1d created separate base for RIGS and assets.
Fixed create asset form
2019-10-01 22:46:48 +01:00

29 lines
688 B
HTML

{% extends 'base_assets.html' %}
{% block title %}List{% endblock %}
{% block content %}
<h4>Supplier List</h4>
<table class="striped">
<thead>
<tr>
<th>Supplier</th>
<th>Quick Links</th>
</tr>
</thead>
<tbody id="asset_table_body">
{% for item in object_list %}
<tr>
<td>{{ item.name }}</td>
<td>
<a href="{% url 'supplier_update' item.pk %}"><i class="material-icons">edit</i></a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% include 'helpers/paginator.html' %}
{% endblock %}