]> git.0d.be Git - django-panik-matos.git/blob - matos/templates/matos/piece_list.html
0a3a4f07e1a4ff84f4e231358de321a4df32156a
[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 {% if perms.matos.add_piece %}
10 <p>
11 <a class="big-friendly-button" href="{% url 'piece-create' %}">Nouvelle pièce</a>
12 </p>
13 {% endif %}
14
15 <ul class="pieces-list">
16 {% for piece in object_list %}
17 <li><a href="{% url 'piece-view' pk=piece.id %}">{{ piece.title }}</a></li>
18 {% endfor %}
19 </ul>
20
21 {% endblock %}