mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
70 lines
3.2 KiB
HTML
70 lines
3.2 KiB
HTML
{% extends 'base_rigs.html' %}
|
|
{% load paginator from filters %}
|
|
{% load static %}
|
|
|
|
{% block title %}Invoices{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-sm-12">
|
|
<h2>{% block heading %}Invoices{% endblock %}</h2>
|
|
{% block description %}{% endblock %}
|
|
{% block search %}{% endblock %}
|
|
<div class="table-responsive col-sm-12">
|
|
<table class="table table-hover">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th scope="col">Invoice #</th>
|
|
<th scope="col">Event</th>
|
|
<th scope="col">Client</th>
|
|
<th scope="col">Event Date</th>
|
|
<th scope="col">Invoice Date</th>
|
|
<th scope="col">Balance</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for invoice in invoice_list %}
|
|
<tr class="table-{% if invoice.is_closed %}success{% else %}warning{% endif %}">
|
|
<th scope="row">{{ invoice.pk }}<br>
|
|
<span class="text-muted">{% if invoice.void %}(VOID){% elif invoice.is_closed %}(PAID){% else %}(O/S){% endif %}</span></th>
|
|
<td><a href="{% url 'event_detail' invoice.event.pk %}">N{{ invoice.event.pk|stringformat:"05d" }}</a>: {{ invoice.event.name }} <br>
|
|
<span class="text-muted">{{ invoice.event.get_status_display }}{% if not invoice.event.mic %}, No MIC{% endif %}
|
|
</span></td>
|
|
</td>
|
|
<td>{% if invoice.event.organisation %}
|
|
{{ invoice.event.organisation.name }}
|
|
<br>
|
|
<span class="text-muted">{{ invoice.event.internal|yesno:'Internal,External' }}</span>
|
|
{% elif invoice.event.person %}
|
|
{{ invoice.event.person.name }}
|
|
<br>
|
|
<span class="text-muted">Individual</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>{{ invoice.event.start_date }}</td>
|
|
<td>{{ invoice.invoice_date }}</td>
|
|
<td>
|
|
{{ invoice.balance|floatformat:2 }}
|
|
{% if not invoice.event.internal %}
|
|
<br />
|
|
<span class="text-muted">{{ invoice.event.purchase_order }}</span>
|
|
{% endif %}
|
|
</td>
|
|
<td class="text-right">
|
|
<a href="{% url 'invoice_detail' invoice.pk %}" class="btn btn-primary">
|
|
<i class="fas fa-edit"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% if is_paginated %}
|
|
<div class="row justify-content-center">
|
|
{% paginator %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|