8c6d56b27c
K-Fêt - Integrate wagtail to serve "static" pages of old K-Fêt website - Fixture "kfetcms/kfet_wagtail_17_05" contains a copy of old website (as in May 2017). - Media files can be got until end of June 17 at http://partage.eleves.ens.fr//files/604e6dea2ceebc66b1936c6b3f911744/kfet_media.tar.gz Login/logout - Update package django_cas_ng to last version. - Clean COFCASBackend. - Change CAS version to 3 (version used on eleves.ens). This enables the logout redirection (for CAS ofc). - Add messages and clean existing ones on login/logout (for both outsider and cas users). Misc - Update settings to bypass an incompability between debug-toolbar and wagtailmenus packages. - Better management of dev/test-specific urls (if debug-toolbar wasn't in INSTALLED_APPS, media files were not served). - UI improvements.
150 lines
7.4 KiB
HTML
150 lines
7.4 KiB
HTML
{% extends "gestioncof/base_header.html" %}
|
|
{% load wagtailcore_tags %}
|
|
|
|
{% block homelink %}
|
|
{% endblock %}
|
|
|
|
{% block interm_content %}
|
|
<div class="container hidden-xs espace"></div>
|
|
<div class="container">
|
|
<div class="home-menu row">
|
|
<div class="{% if user.profile.is_buro %}col-sm-6 {% else %}col-sm-8 col-sm-offset-2 col-xs-12 {%endif%}normal-user-hm">
|
|
<!-- {% if open_events %}
|
|
<h3 class="block-title">Événements<span class="pull-right glyphicon glyphicon-calendar"></span></h3>
|
|
<div class="hm-block">
|
|
<ul>
|
|
{% for event in open_events %}
|
|
<li><a href="{% url "gestioncof.views.event" event.id %}">{{ event.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %} -->
|
|
{% if open_surveys %}
|
|
<h3 class="block-title">Sondages en cours<span class="pull-right glyphicon glyphicon-stats"></span></h3>
|
|
<div class="hm-block">
|
|
<ul>
|
|
{% for survey in open_surveys %}
|
|
<li><a href="{% url "gestioncof.views.survey" survey.id %}">{{ survey.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
{% if user.profile.is_cof %}
|
|
{% if open_tirages %}
|
|
<h3 class="block-title">Tirages du BdA<span class="pull-right glyphicon glyphicon-th-list"></span></h3>
|
|
<div class="hm-block">
|
|
{% for tirage in open_tirages %}
|
|
<ul>
|
|
<h4>{{ tirage.title }}</h4>
|
|
{% if tirage.fermeture > now %}
|
|
<li><a href="{% url "bda-tirage-inscription" tirage.id %}">Inscription</a></li>
|
|
<li><a href="{% url "bda-etat-places" tirage.id %}">État des demandes</a></li>
|
|
{% else %}
|
|
<li><a href="{% url "bda-places-attribuees" tirage.id %}">Mes places</a></li>
|
|
<li><a href="{% url "bda-revente" tirage.id %}">Revendre une place</a></li>
|
|
<li><a href="{% url "bda-liste-revente" tirage.id %}">S'inscrire à BdA-Revente</a></li>
|
|
<li><a href="{% url "bda-shotgun" tirage.id %}">Places disponibles immédiatement</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<h3 class="block-title">K-Fêt<span class="pull-right"><i class="fa fa-coffee"></i></span></h3>
|
|
<div class="hm-block">
|
|
<ul>
|
|
{# TODO: Since Django 1.9, we can store result with "as", allowing proper value management (if None) #}
|
|
<li><a href="{% slugurl "k-fet" %}">Page d'accueil</a></li>
|
|
<li><a href="https://www.cof.ens.fr/k-fet/calendrier">Calendrier</a></li>
|
|
{% if perms.kfet.is_team %}
|
|
<li><a href="{% url 'kfet.kpsul' %}">K-Psul</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
|
|
{% if user.profile.is_cof %}
|
|
<h3 class="block-title">Divers<span class="pull-right glyphicon glyphicon-question-sign"></span></h3>
|
|
<div class="hm-block">
|
|
<ul>
|
|
<li><a href="{% url "gestioncof.views.calendar" %}">Calendrier dynamique</a></li>
|
|
{% if user.profile.is_cof %}<li><a href="{% url "petits-cours-inscription" %}">Inscription pour donner des petits cours</a></li>{% endif %}
|
|
|
|
<li><a href="{% url "gestioncof.views.profile" %}">Éditer mon profil</a></li>
|
|
{% if not user.profile.login_clipper %}<li><a href="{% url "django.contrib.auth.views.password_change" %}">Changer mon mot de passe</a></li>{% endif %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if user.profile.is_buro %}
|
|
<div class="col-sm-6 buro-user-hm">
|
|
<h3 class="block-title">Administration<span class="pull-right glyphicon glyphicon-cog"></span></h3>
|
|
<div class="hm-block">
|
|
<ul>
|
|
<h4>Général</h4>
|
|
<li><a href="{% url "admin:index" %}">Administration générale</a></li>
|
|
<li><a href="{% url "petits-cours-demandes-list" %}">Demandes de petits cours</a></li>
|
|
<li><a href="{% url "gestioncof.views.registration" %}">Inscription d'un nouveau membre</a></li>
|
|
<li><a href="{% url "liste-clubs" %}">Gestion des clubs</a></li>
|
|
</ul>
|
|
<ul>
|
|
<h4>Évènements & Sondages</h4>
|
|
{% for event in events %}
|
|
<li><a href="{% url "gestioncof.views.event_status" event.id %}">Événement : {{ event.title }}</a></li>
|
|
{% endfor %}
|
|
{% for survey in surveys %}
|
|
<li><a href="{% url "gestioncof.views.survey_status" survey.id %}">Sondage : {{ survey.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<h3 class="block-title">Gestion tirages BdA<span class="pull-right glyphicon glyphicon-list"></span></h3>
|
|
<div class="hm-block">
|
|
{% if active_tirages %}
|
|
{% for tirage in active_tirages %}
|
|
<ul>
|
|
<h4>{{ tirage.title }}</h4>
|
|
<li><a href="{% url "bda-liste-spectacles" tirage.id %}">Spectacles</a></li>
|
|
<li><a href="{% url "admin:bda_participant_changelist" %}?tirage__id__exact={{ tirage.id }}">Participants</a></li>
|
|
{% if tirage.fermeture < now %}
|
|
<li><a href="{% url "bda-etat-places" tirage.id %}">Ratios</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endfor %}
|
|
{% else %}
|
|
Pas de tirage ouvert pour l'instant.
|
|
{% endif %}
|
|
</div>
|
|
|
|
<h3 class="block-title">Liens utiles<span class="pull-right glyphicon glyphicon-link"></span></h3>
|
|
<div class="hm-block">
|
|
<ul>
|
|
<li><a href="{% url "gestioncof.views.utile_cof" %}">Liens utiles du COF</a></li>
|
|
<li><a href="{% url "gestioncof.views.utile_bda" %}">Liens utiles BdA</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div> <!-- /.row.home-menu -->
|
|
<div class="container hidden-xs espace"></div>
|
|
{% if not user.profile.is_buro %}
|
|
<div class="home-menu row row-centered">
|
|
<div class="col-sm-8 col-sm-offset-2 col-xs-12 normal-user-hm">
|
|
<div class="foot-banner">
|
|
<h3>Pour tout problème : <tt>cof@ens.fr.</tt></h3>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.row.home-menu -->
|
|
{% else %}
|
|
<div class="home-menu row row-centered">
|
|
<div class="visible-xs-block col-xs-12 normal-user-hm">
|
|
<div class="foot-banner">
|
|
<h3>Pour tout problème : <tt>cof@ens.fr.</tt></h3>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.row.home-menu -->
|
|
{% endif %}
|
|
<div class="container hidden-xs espace"></div>
|
|
</div><!-- /.container -->
|
|
{% endblock %}
|