mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-23 16:32:15 +00:00
24 lines
803 B
HTML
24 lines
803 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>
|
|
|
|
<form id="supplier-search-form" method="get" class="form-inline pull-right">
|
|
{% csrf_token %}
|
|
<div class="input-group pull-right" style="width: auto;">
|
|
{% render_field form.query|add_class:'form-control' placeholder='Search by Name' style="width: 250px"%}
|
|
<label for="query" class="sr-only">Name:</label>
|
|
<span class="input-group-btn"><button type="submit" class="btn btn-default" id="id_search">Search</button></span>
|
|
</div>
|
|
</form>
|
|
|
|
{% include 'partials/generic_list.html' with edit="supplier_update" detail="supplier_detail" %}
|
|
|
|
{% endblock %}
|