mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
12 lines
342 B
HTML
12 lines
342 B
HTML
{% extends 'base_assets.html' %}
|
|
{% block title %}Supplier List{% endblock %}
|
|
{% load paginator from filters %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<h3>Suppliers</h3>
|
|
</div>
|
|
{% include 'partials/generic_list.html' with edit="supplier_update" detail="supplier_detail" create="supplier_create" %}
|
|
{% endblock %}
|