{% extends 'base.html' %} {% load bootstrap3 %} {% block servicestab %} class="active"{% endblock %} {% block content %}
{% for service in object_list %}

#{{ service.pk }} {{ service.service_type }}

{{ service.start|default:"depuis toujours" }} – {{ service.end|default:"présent" }}

{% if service.contribution.count == 1 %}

{{ service.contribution.first }}

{% elif service.contribution.count > 1 %}

multiples paiements

{% endif %}

{{ service.ip_resources.all|join:", " }}

{% empty %}
Vous n’avez aucun service.
{% endfor %}
{% endblock %}