mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
15 lines
357 B
HTML
15 lines
357 B
HTML
{% extends 'base_assets.html' %}
|
|
{% block title %}Supplier List{% endblock %}
|
|
{% load paginator from filters %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1>Supplier List</h1>
|
|
</div>
|
|
|
|
{% include 'partials/generic_list.html' with edit="supplier_update" detail="supplier_detail" create="supplier_create" %}
|
|
|
|
{% endblock %}
|