@@ -25,18 +25,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load bootstrap3 %}
{% load acl %}
{% load i18n %}
{% block title %}Articles{% endblock %}
{% block title %}{% trans "Articles" %}{% endblock %}
{% block content %}
<h2>Liste des types d'articles</h2>
{% can_create Article %}
<aclass="btn btn-primary btn-sm"role="button"href="{% url 'cotisations:add-article' %}"><iclass="fa fa-cart-plus"></i> Ajouter un type d'articles</a>
{% acl_end %}
<aclass="btn btn-danger btn-sm"role="button"href="{% url 'cotisations:del-article' %}"><iclass="fa fa-trash"></i> Supprimer un ou plusieurs types d'articles</a>
{% include "cotisations/aff_article.html" with article_list=article_list %}
@@ -25,18 +25,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load bootstrap3 %}
{% load acl %}
{% load i18n %}
{% block title %}Banques{% endblock %}
{% block title %}{% trans "Banks" %}{% endblock %}
{% block content %}
<h2>Liste des banques</h2>
{% can_create Banque %}
<aclass="btn btn-primary btn-sm"role="button"href="{% url 'cotisations:add-banque' %}"><iclass="fa fa-cart-plus"></i> Ajouter une banque</a>
{% acl_end %}
<aclass="btn btn-danger btn-sm"role="button"href="{% url 'cotisations:del-banque' %}"><iclass="fa fa-trash"></i> Supprimer une ou plusieurs banques</a>
{% include "cotisations/aff_banque.html" with banque_list=banque_list %}
@@ -25,18 +25,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load bootstrap3 %}
{% load acl %}
{% load i18n %}
{% block title %}Paiements{% endblock %}
{% block title %}{% trans "Payments" %}{% endblock %}
{% block content %}
<h2>Liste des types de paiements</h2>
{% can_create Paiement %}
<aclass="btn btn-primary btn-sm"role="button"href="{% url 'cotisations:add-paiement' %}"><iclass="fa fa-cart-plus"></i> Ajouter un type de paiement</a>
{% acl_end %}
<aclass="btn btn-danger btn-sm"role="button"href="{% url 'cotisations:del-paiement' %}"><iclass="fa fa-trash"></i> Supprimer un ou plusieurs types de paiements</a>
{% include "cotisations/aff_paiement.html" with paiement_list=paiement_list %}