]> git.0d.be Git - django-panik-matos.git/blob - matos/templates/matos/piece_list.html
25d4dc2c14b83a6adad4418cf38727c6ad166f7a
[django-panik-matos.git] / matos / templates / matos / piece_list.html
1 {% extends "matos/base.html" %}
2
3 {% block appbar %}
4 <h2>Matériel</h2>
5 {% endblock %}
6
7 {% block content %}
8
9 <ul class="pieces-list">
10 {% for piece in object_list %}
11 <li><a href="{% url 'piece-view' pk=piece.id %}">{{ piece.title }}</a></li>
12 {% endfor %}
13 </ul>
14
15 {% if perms.matos.add_piece %}
16 <a class="big-friendly-button" href="{% url 'piece-create' %}">Nouvelle pièce</a>
17 {% endif %}
18
19 {% endblock %}