2017-02-18 01:10:30 +01:00
|
|
|
{% extends "base_html.html" %}
|
|
|
|
{% load staticfiles %}
|
|
|
|
|
|
|
|
{% block title %}GestionÉvènementiel{% block sub_title %}{% endblock %}{% endblock %}
|
2017-02-18 16:56:56 +01:00
|
|
|
|
|
|
|
{% block page_main_title %}
|
|
|
|
<a href="#TODO" class="logo"><b>GestionÉvènementiel</b></a>
|
|
|
|
{% block sub_main_page_title %}{% endblock %}
|
|
|
|
{% endblock %}
|
2017-02-18 01:10:30 +01:00
|
|
|
|
2017-02-20 18:42:37 +01:00
|
|
|
{% block sidebar_menu %}
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
<h5 class="centered username">{{ user.username }}</h5>
|
|
|
|
{% else %}
|
|
|
|
<h5 class="centered username">non connecté·e</h5>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<hr/>
|
|
|
|
|
|
|
|
{% block sidenav %}
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-02-18 01:10:30 +01:00
|
|
|
{% block real_content %}
|
2017-02-21 14:51:42 +01:00
|
|
|
<div class="row row-centered">
|
|
|
|
<div class="{% block page_size %}col-lg-12{% endblock %} col-centered">
|
2017-02-18 16:56:56 +01:00
|
|
|
<h2><i class="fa fa-angle-right"></i>{% block page_title %}{% endblock %}</h2>
|
2017-02-18 01:10:30 +01:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
<!-- /.col-lg-12 -->
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
{% endblock %}
|
|
|
|
|