web/hdabo/templates/partial/organisation_list.html
author cavaliet
Tue, 31 May 2011 11:49:24 +0200
changeset 7 b5204be88f8e
child 8 fe20b23e9f0f
permissions -rw-r--r--
First views for home and sheet display, and navigation in sheet groups by location.

{% extends "hdabo_base.html" %}
    {% block title %}HDA-BO : Liste des organisations{% endblock %}
    
    {% block content %}
    {{block.super}}
    <p>Afficher les fiches non validées pour les lieux suivants :</p>
    <table>
    <tr>
        <th class="contenttitle">Nom</th>
        <th class="contenttitle">Fiches non validées</th>
        <th class="contenttitle">Fiches validées</th>
        <th class="contenttitle">Toutes les fiches</th>
    </tr>
    {% for organisation in organisations %}
    <tr class="imageline {% cycle 'hdabooddline' 'hdaboevenline'%}">
        <td class="contenttitle">{{ organisation.name|default:"_" }} (<a href="{{organisation.website}}" target="_blank">lien</a>)</td>
        <td class="contenttitle"><a class="contenttitlelink" href="{% url hdabo.views.list_for_orga orga_id=organisation.id valid=0 %}">Voir</a></td>
        <td class="contenttitle"><a class="contenttitlelink" href="{% url hdabo.views.list_for_orga orga_id=organisation.id valid=1 %}">Voir</a></td>
        <td class="contenttitle"><a class="contenttitlelink" href="{% url hdabo.views.list_for_orga orga_id=organisation.id valid=2 %}">Voir</a></td>
    </tr>
    {% endfor %}
    </table>
    {% endblock %}