mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-27 07:02:26 +00:00
17 lines
667 B
HTML
17 lines
667 B
HTML
{% extends "cotisations/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Articles{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Liste des types d'articles</h2>
|
|
{% if is_trez %}
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:add-article' %}"><i class="glyphicon glyphicon-plus"></i> Ajouter un type d'articles</a>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'cotisations:del-article' %}"><i class="glyphicon glyphicon-trash"></i> Supprimer un ou plusieurs types d'articles</a>
|
|
{% endif %}
|
|
{% include "cotisations/aff_article.html" with article_list=article_list %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|
|
|