{% extends 'base.html' %} {% load bootstrap3 %} {% block content %}

{{ ipresource }}

Historique des allocations

{% for allocation in ipresource.allocations.all %} {% if forloop.first %} {% endif %} {% if forloop.last %}
Service Début Fin
{{ allocation.service }} {{ allocation.start }} {{ allocation.end|default:'–' }}
{% endif %} {% empty %}
Auncune allocation.
{% endfor %}
{% endblock %}