1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {% extends 'base.html' %}
- {% load bootstrap3 %}
- {% block servicestab %}{% if service.adherent == request.user.profile.adhesion %} class="active"{% endif %}{% endblock %}
- {% block assotab %}{% if service.adherent != request.user.profile.adhesion %} active{% endif %}{% endblock %}
- {% block content %}
- {% if service.adherent == request.user.profile.adhesion %}
- <a href="{% url 'service-list' %}" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span> Retour à la liste de mes services</a>
- {% else %}
- <a href="{% url 'corporation' service.adherent.adherent.pk %}" class="btn btn-primary">
- <span class="glyphicon glyphicon-arrow-left"></span> Retour à la liste des services de {{ service.adherent.adherent }}
- </a>
- {% endif %}
- <br /><br />
- <div class="panel panel-default">
- <div class="panel-heading">
- <h3>{{ service.service_type }}</h3>
- {% if service.label %}
- <h4>{{ service.label }}</h4>
- {% endif %}
- </div>
- <div class="panel-body">
- {% if service.contribution %}
- <p>Contribution : {{ service.contribution }}</p>
- {% else %}
- <p>Contribution : pas de contribution</p>
- {% endif %}
- <p>
- Ressources IP :
- {% for allocation in service.active_allocations %}
- {% if forloop.first %}<ul>{% endif %}
- <li>{{ allocation.resource }} (depuis le {{ allocation.start }})</li>
- {% if forloop.last %}</ul>{% endif %}
- {% empty %}
- aucune IP allouée
- {% endfor %}
- </p>
- </div>
- </div>
- {% endblock %}
|