@@ -24,15 +24,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endcomment %}
{% load bootstrap3 %}
{% load acl %}
{% block title %}Articles{% endblock %}
{% block content %}
<h2>Liste des types d'articles</h2>
{% if is_trez %}
{% can_create Article %}
<aclass="btn btn-primary btn-sm"role="button"href="{% url 'cotisations:add-article' %}"><iclass="glyphicon glyphicon-plus"></i> Ajouter un type d'articles</a>
{% acl_end %}
<aclass="btn btn-danger btn-sm"role="button"href="{% url 'cotisations:del-article' %}"><iclass="glyphicon glyphicon-trash"></i> Supprimer un ou plusieurs types d'articles</a>
{% endif %}
{% include "cotisations/aff_article.html" with article_list=article_list %}
@@ -24,15 +24,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endcomment %}
{% load bootstrap3 %}
{% load acl %}
{% block title %}Banques{% 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="glyphicon glyphicon-plus"></i> Ajouter une banque</a>
{% if is_trez %}
{% acl_end %}
<aclass="btn btn-danger btn-sm"role="button"href="{% url 'cotisations:del-banque' %}"><iclass="glyphicon glyphicon-trash"></i> Supprimer une ou plusieurs banques</a>
{% endif %}
{% include "cotisations/aff_banque.html" with banque_list=banque_list %}
@@ -24,15 +24,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endcomment %}
{% load bootstrap3 %}
{% load acl %}
{% block title %}Paiements{% endblock %}
{% block content %}
<h2>Liste des types de paiements</h2>
{% if is_trez %}
{% can_create Paiement %}
<aclass="btn btn-primary btn-sm"role="button"href="{% url 'cotisations:add-paiement' %}"><iclass="glyphicon glyphicon-plus"></i> Ajouter un type de paiement</a>
{% acl_end %}
<aclass="btn btn-danger btn-sm"role="button"href="{% url 'cotisations:del-paiement' %}"><iclass="glyphicon glyphicon-trash"></i> Supprimer un ou plusieurs types de paiements</a>
{% endif %}
{% include "cotisations/aff_paiement.html" with paiement_list=paiement_list %}