corporation_detail.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {% extends 'admin.html' %}
  2. {% block breadcrumb %}
  3. {{ block.super }}
  4. <li><a href="{% url 'corporation-list' %}">Associations</a></li>
  5. <li class="active">{{ corporation }}</li>
  6. {% endblock %}
  7. {% block content %}
  8. <div class="panel panel-primary">
  9. <div class="panel-heading">
  10. <a href="{% url 'corporation-edit' corporation.pk %}" class="btn btn-success pull-right">Éditer</a>
  11. <h4>{{ corporation }}</h4>
  12. </div>
  13. <table class="table table-bordered">
  14. <tr>
  15. <th>Numéro d’adhérent</th>
  16. <td>
  17. {% if corporation.adhesion %}
  18. <a href="{% url 'adhesion-detail' corporation.adhesion.id %}">ADT{{ corporation.adhesion.id }}</a>
  19. {% else %}
  20. <em>Non adhérent.</em>
  21. {% endif %}
  22. </td>
  23. </tr>
  24. </table>
  25. </div>
  26. <div class="panel panel-primary">
  27. <div class="panel-heading">
  28. <h4>Membres</h4>
  29. </div>
  30. <table class="table table-bordered">
  31. {% for user in corporation.members.all %}
  32. {% if forloop.first %}
  33. <tr>
  34. <th>Nom</th>
  35. <th>Numéro d’adhérent</th>
  36. </tr>
  37. {% endif %}
  38. <tr>
  39. <td>
  40. <a href="{% url 'user-detail' user.pk %}">{{ user.profile }}</a>
  41. </td>
  42. <td>
  43. {% if user.profile.adhesion %}
  44. <a href="{% url 'adhesion-detail' user.profile.adhesion.pk %}">ADT{{ user.profile.adhesion.pk }}</a>
  45. {% else %}
  46. {% endif %}
  47. </td>
  48. </tr>
  49. {% empty %}
  50. <tr>
  51. <td><em>Aucun membre.</em></td>
  52. </tr>
  53. {% endfor %}
  54. </table>
  55. </div>
  56. {% endblock %}