list.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {% extends "base.html" %}
  2. {% block content %}
  3. {% if view == 'old' %}
  4. <h2>L'association m'a prêté…</h2>
  5. {% else %}
  6. <h2>L'association me prête…</h2>
  7. {% endif %}
  8. {% for message in messages %}
  9. <div class="message {{ message.tags }}">{{ message }}</div>
  10. {% endfor %}
  11. <table id="member_loans" class="full-width">
  12. <thead>
  13. <tr>
  14. <th>Type de matériel</th>
  15. <th>Matériel prêté</th>
  16. <th>Date de prêt</th>
  17. {% if view == 'old' %}<th>Date retour</th>{% endif %}
  18. <th>Addr. MAC</th>
  19. <th>Num. de série</th>
  20. {% if view != 'old' %}<th>Actions</th>{% endif %}
  21. </tr>
  22. </thead>
  23. <tbody>
  24. {% for loan in loans %}
  25. <tr>
  26. <td>{{ loan.item.type }}</td>
  27. <td>{{ loan.item }}</a></td>
  28. <td>{{ loan.loan_date }}</td>
  29. {% if view == 'old' %}<td>{{ loan.loan_date_end }}</td>{% endif %}
  30. <td>{{ loan.item.mac_address|default:"n/a" }}</td>
  31. <td>{{ loan.item.serial|default:"n/a" }}</td>
  32. {% if view != 'old' %}
  33. <td class="actions">
  34. <div class="button-group">
  35.   <a href="{% url 'hardware_provisioning:loan-return' pk=loan.pk %}" class="small button">
  36.      <i class="fa fa-times"></i>&nbsp;Rendre
  37.  </a>
  38. </div>
  39. </td>
  40. {% endif %}
  41. </tr>
  42. {% empty %}
  43. <tr class="placeholder"><td colspan="6">… rien du tout !</td></tr>
  44. {% endfor %}
  45. </tbody>
  46. </table>
  47. <p class="list-filter">
  48. {% if view == 'old' %}
  49. <a href="./">Afficher les prêts en cours</a>
  50. {% else %}
  51. <a href="?old">Afficher l'historique de prêt</a>
  52. {% endif %}
  53. </p>
  54. {% endblock %}