123456789101112131415161718192021222324252627282930313233343536373839 |
- {% extends 'base.html' %}
- {% load bootstrap3 %}
- {% block content %}
- <div class="panel panel-primary">
- <div class="panel-heading">
- <h1>Services</h1>
- </div>
- {% for service in object_list %}
- {% if forloop.first %}
- <table class="table">
- <tr>
- <th>#</th>
- <th>Type</th>
- <th>Label</th>
- <th>Adhérent</th>
- <th></th>
- </tr>
- {% endif %}
- <tr>
- <td><a href="{% url 'service-detail' service.pk %}">#{{ service.pk }}</a></td>
- <td>{{ service.service_type }}</td>
- <td>{{ service.label }}</td>
- <td>
- <a href="{% url 'adhesion-detail' service.adhesion.id %}">ADT{{ service.adhesion.pk }}</a>
- –
- <a href="{{ service.adhesion.get_adherent_detail_url }}">{{ service.adhesion }}</a>
- </td>
- <td class="text-right">
- <a href="{% url 'service-edit' service.pk %}"><span class="glyphicon glyphicon-pencil"></span> Modifier</a>
- </td>
- </tr>
- {% if forloop.last %}
- </table>
- {% endif %}
- {% endfor %}
- </div>
- {% endblock %}
|