mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
24 lines
505 B
HTML
24 lines
505 B
HTML
{% extends 'invoice_list.html' %}
|
|
|
|
{% block title %}
|
|
Invoice Archive
|
|
{% endblock %}
|
|
|
|
{% block heading %}
|
|
All Invoices
|
|
{% endblock %}
|
|
|
|
{% block description %}
|
|
<p>This page displays all invoices: outstanding, paid, and void</p>
|
|
{% endblock %}
|
|
|
|
{% block search %}
|
|
<div class="col-md-6">
|
|
<form class="form form-horizontal">
|
|
<div class="form-group">
|
|
<input type="search" name="q" placeholder="Search" value="{{ request.GET.q }}" class="form-control"/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|