{% load costs %}
{{ document.name }}
Services proposés
{% for service in document.service_set.all %}
-
{{ service.name }}
{% empty %}
- Pas de service pour l'instant.
{% endfor %}
Coûts
Désignation | Capacité totale |
Occupation | Coût mensuel |
{% for cost in document.cost_set.all %}
{{ cost.name }}
|
{% if cost.capacity_unit %}
{{ cost.total_capacity|human_round }} {{ cost.get_capacity_unit_display }}
{% else %}
n/a
{% endif %}
|
{{ cost.used_fraction|percent }} |
{{ cost.price|price }} |
{% empty %}
Pas de coût pour l'instant. |
{% endfor %}
Matériel et frais d'accès
Désignation |
Capacité totale |
Occupation |
Coût d'achat |
{% for good in document.good_set.all %}
{{ good.name }}
|
{% if good.capacity_unit %}
{{ good.total_capacity|human_round }} {{ good.get_capacity_unit_display }}
{% else %}
n/a
{% endif %}
|
{{ good.used_fraction|percent }}
|
{{good.price|price }}
|
{% empty %}
Pas de matériel pour l'instant. |
{% endfor %}