mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
101 lines
4.3 KiB
HTML
101 lines
4.3 KiB
HTML
{% comment %}
|
|
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
quelques clics.
|
|
|
|
Copyright © 2018 Hugo Levy-Falk
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
{% load acl %}
|
|
{% load logs_extra %}
|
|
{% load design %}
|
|
|
|
<div class="table-responsive">
|
|
{% if cost_estimate_list.paginator %}
|
|
{% include 'pagination.html' with list=cost_estimate_list%}
|
|
{% endif %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
{% trans "Recipient" as tr_recip %}
|
|
{% include 'buttons/sort.html' with prefix='invoice' col='user' text=tr_recip %}
|
|
</th>
|
|
<th>{% trans "Designation" %}</th>
|
|
<th>{% trans "Total price" %}</th>
|
|
<th>
|
|
{% trans "Payment method" as tr_payment_method %}
|
|
{% include 'buttons/sort.html' with prefix='invoice' col='payement' text=tr_payment_method %}
|
|
</th>
|
|
<th>
|
|
{% trans "Date" as tr_date %}
|
|
{% include 'buttons/sort.html' with prefix='invoice' col='date' text=tr_date %}
|
|
</th>
|
|
<th>
|
|
{% trans "Validity" as tr_validity %}
|
|
{% include 'buttons/sort.html' with prefix='invoice' col='validity' text=tr_validity %}
|
|
</th>
|
|
<th>
|
|
{% trans "Cost estimate ID" as tr_estimate_id %}
|
|
{% include 'buttons/sort.html' with prefix='invoice' col='id' text=tr_estimate_id %}
|
|
</th>
|
|
<th>
|
|
{% trans "Invoice created" as tr_invoice_created%}
|
|
{% include 'buttons/sort.html' with prefix='invoice' col='paid' text=tr_invoice_created %}
|
|
</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for estimate in cost_estimate_list %}
|
|
<tr>
|
|
<td>{{ estimate.recipient }}</td>
|
|
<td>{{ estimate.name }}</td>
|
|
<td>{{ estimate.prix_total }}</td>
|
|
<td>{{ estimate.payment }}</td>
|
|
<td>{{ estimate.date }}</td>
|
|
<td>{{ estimate.validity }}</td>
|
|
<td>{{ estimate.id }}</td>
|
|
<td>
|
|
{% if estimate.final_invoice %}
|
|
<a href="{% url 'cotisations:edit-custom-invoice' estimate.final_invoice.pk %}"><i style="color: #1ECA18;" class="fa fa-check"></i></a>
|
|
{% else %}
|
|
<i style="color: #D10115;" class="fa fa-times"></i>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% can_edit estimate %}
|
|
{% include 'buttons/edit.html' with href='cotisations:edit-cost-estimate' id=estimate.id %}
|
|
{% acl_end %}
|
|
{% history_button estimate %}
|
|
{% include 'buttons/suppr.html' with href='cotisations:del-cost-estimate' id=estimate.id %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:cost-estimate-to-invoice' estimate.id %}">
|
|
<i class="fa fa-file"></i>
|
|
</a>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:cost-estimate-pdf' estimate.id %}">
|
|
<i class="fa fa-file-pdf-o"></i> {% trans "PDF" %}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% if custom_invoice_list.paginator %}
|
|
{% include 'pagination.html' with list=custom_invoice_list %}
|
|
{% endif %}
|
|
</div>
|