mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
37 lines
719 B
HTML
37 lines
719 B
HTML
{% extends 'base_assets.html' %}
|
|
{% block title %}List{% endblock %}
|
|
{% load paginator from filters %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1>Supplier List</h1>
|
|
</div>
|
|
|
|
<table class="table table-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 %}" class="btn btn-default"><i class="glyphicon glyphicon-edit"></i> Edit</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% if is_paginated %}
|
|
<div class="text-center">
|
|
{% paginator %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|