{% extends 'base.html' %} {% load crispy_forms_tags %} {% load static %} {% block main %}
{% if not page.output or page.err %} {{page.p_contenu|safe}} {% else %} {% if page.err %}{{page.err|safe}}{% endif %} {% if page.output and page.err %}
{% endif %} {% if page.output %}{{page.output|safe|urlize}}{% endif %} {% endif %} {% if page.speeddial %}

Speed Dial

{% for item in page.speeddial %}
{% if item.sd_groupe %}[{{ item.sd_groupe }}] {% endif %}{{item.sd_titre}}
{% endfor %}
{% endif%} {% if page.form and not page.output %}
{% if page.p_f_titre %}
{{page.p_f_titre}}
{% endif %}
{% csrf_token %} {{ page.form|crispy }}
{% endif %}
{% endblock %} {% block right_panel %} {% if page.p_right != "" %}
{% if page.form and page.output %} {% if page.p_f_titre %}
{{page.p_f_titre}}
{% endif %}
{% csrf_token %} {{ page.form|crispy }}
{% endif %} {{page.p_right|safe}} {% if page.groupe %}

Les Groupes

{% for grp in page.groupe %} {{grp.g_nom}} {% endfor %} Aucun {% endif %}

{% endif %} {% endblock %} {% block script %} {% endblock %}