Files
PyRIGS/assets/templates/supplier_list.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 %}