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.
19 lines
488 B
HTML
19 lines
488 B
HTML
{% extends "kfet/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-content-left {% block fixed-size %}col-sm-3{% endblock %}">
|
|
<div class="content-left">
|
|
{% block fixed-content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="col-content-right {% block main-size %}col-sm-9{% endblock %}">
|
|
{% include "kfet/base_messages.html" %}
|
|
<div class="content-right">
|
|
{% block main-content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|