{% extends "costs/base.html" %} {% load costs %} {% block rail %} {% if document.comment %}

Notes {{ document.comment|linebreaks }}

{% endif %} {% endblock %} {% block content %}

Services proposés aux adhérents

Cliquer sur un service pour accéder au détail de son coût par abonnement.

Coûts récurents

Sont listés ici les coûts facturés à l'association mensuellement.

{% for cost in document.cost_set.all %} {% empty %} {% endfor %}
DésignationCapacité totale OccupationCoût mensuel
{{ cost.name }} {% if cost.description %} {% endif %} {% 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 }}
Pas de coût pour l'instant.

Matériel et frais d'accès

Sont listés ici les investissements que l'association n'a a payer qu'une fois. Comptablement, ces coûts sont répartis entre les différents services et étalés sur la durée de vie du matériel (afin de pouvoir le renouveller à l'échéance de sa durée de vie).

{% for good in document.good_set.all %} {% empty %} {% endfor %}
Désignation Capacité totale Occupation Coût d'achat
{{ good.name }} {% if good.description %} {% endif %} {% 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 }}
Pas de matériel pour l'instant.
{% endblock %}