123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {% extends "base.html" %}
- {% block content %}
- {% if view == 'old' %}
- <h2>L'association m'a prêté…</h2>
- {% else %}
- <h2>L'association me prête…</h2>
- {% endif %}
- {% for message in messages %}
- <div class="message {{ message.tags }}">{{ message }}</div>
- {% endfor %}
- <table id="member_loans" class="full-width">
- <thead>
- <tr>
- <th>Type de matériel</th>
- <th>Matériel prêté</th>
- <th>Date de prêt</th>
- {% if view == 'old' %}<th>Date retour</th>{% endif %}
- <th>Addr. MAC</th>
- <th>Num. de série</th>
- {% if view != 'old' %}<th>Actions</th>{% endif %}
- </tr>
- </thead>
- <tbody>
- {% for loan in loans %}
- <tr>
- <td>{{ loan.item.type }}</td>
- <td>{{ loan.item }}</a></td>
- <td>{{ loan.loan_date }}</td>
- {% if view == 'old' %}<td>{{ loan.loan_date_end }}</td>{% endif %}
- <td>{{ loan.item.mac_address|default:"n/a" }}</td>
- <td>{{ loan.item.serial|default:"n/a" }}</td>
- {% if view != 'old' %}
- <td class="actions">
- <div class="button-group">
- <a href="{% url 'hardware_provisioning:loan-return' pk=loan.pk %}" class="small button">
- <i class="fa fa-times"></i> Rendre
- </a>
- </div>
- </td>
- {% endif %}
- </tr>
- {% empty %}
- <tr class="placeholder"><td colspan="6">… rien du tout !</td></tr>
- {% endfor %}
- </tbody>
- </table>
- <p class="list-filter">
- {% if view == 'old' %}
- <a href="./">Afficher les prêts en cours</a>
- {% else %}
- <a href="?old">Afficher l'historique de prêt</a>
- {% endif %}
- </p>
- {% endblock %}
|