8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-21 00:44:06 +00:00
re2o/cotisations/templates/cotisations/sidebar.html

70 lines
2.8 KiB
HTML
Raw Normal View History

2019-01-08 23:38:53 +00:00
{% extends 'base.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 © 2017 Gabriel Détraz
Copyright © 2017 Goulven Kermarec
Copyright © 2017 Augustin Lemesle
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 %}
2017-12-27 20:09:00 +00:00
{% load acl %}
{% load i18n %}
2016-07-02 13:58:50 +00:00
{% block sidebar %}
{% can_create CustomInvoice %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-success" href="{% url 'cotisations:new-custom-invoice' %}">
<i class="fa fa-plus"></i> {% trans "Create an invoice" %}
2016-11-18 10:53:10 +00:00
</a>
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-warning" href="{% url 'cotisations:control' %}">
<i class="fa fa-eye"></i> {% trans "Control the invoices" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-29 11:34:49 +00:00
{% acl_end %}
2017-12-27 20:09:00 +00:00
{% can_view_all Facture %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'cotisations:index' %}">
<i class="fa fa-list-ul"></i> {% trans "Invoices" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 20:09:00 +00:00
{% acl_end %}
2018-07-21 22:16:05 +00:00
{% can_view_all CustomInvoice %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'cotisations:index-custom-invoice' %}">
2018-07-21 22:16:05 +00:00
<i class="fa fa-list-ul"></i> {% trans "Custom invoices" %}
</a>
{% acl_end %}
2018-12-31 22:58:37 +00:00
{% can_view_all CostEstimate %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'cotisations:index-cost-estimate' %}">
<i class="fa fa-list-ul"></i> {% trans "Cost estimates" %}
2018-12-31 22:58:37 +00:00
</a>
{% acl_end %}
2017-12-27 20:09:00 +00:00
{% can_view_all Article %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'cotisations:index-article' %}">
<i class="fa fa-list-ul"></i> {% trans "Available articles" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 20:09:00 +00:00
{% acl_end %}
{% can_view_all Banque %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'cotisations:index-banque' %}">
<i class="fa fa-list-ul"></i> {% trans "Banks" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 20:09:00 +00:00
{% acl_end %}
{% can_view_all Paiement %}
2019-01-08 23:38:53 +00:00
<a class="list-group-item list-group-item-info" href="{% url 'cotisations:index-paiement' %}">
<i class="fa fa-list-ul"></i> {% trans "Payment methods" %}
2016-11-18 10:53:10 +00:00
</a>
2017-12-27 20:09:00 +00:00
{% acl_end %}
2016-07-02 13:58:50 +00:00
{% endblock %}
2018-06-23 17:54:20 +00:00