2016-07-11 19:59:32 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<header>
|
|
|
|
<div class="container banner">
|
|
|
|
<a href="{% url "gestioncof.views.home" %}">
|
2016-07-11 21:48:11 +02:00
|
|
|
<h1>GestioCOF</h1>
|
|
|
|
{% block homelink %}
|
|
|
|
<span class="glyphicon glyphicon-home" aria-hidden=true></span>
|
|
|
|
{% endblock %}
|
2016-07-11 19:59:32 +02:00
|
|
|
</a>
|
2016-07-25 19:19:07 +02:00
|
|
|
<div class="secondary">
|
2016-07-26 20:19:34 +02:00
|
|
|
<span class="hidden-xxs"> | </span>
|
2016-07-27 14:00:38 +02:00
|
|
|
<span><a href="{% url "gestioncof.views.logout" %}">Se déconnecter <span class="glyphicon glyphicon-log-out"></span></a></span>
|
2016-07-11 19:59:32 +02:00
|
|
|
</div>
|
2016-07-25 19:19:07 +02:00
|
|
|
<h2 class="member-status">{% if user.first_name %}{{ user.first_name }}{% else %}<tt>{{ user.username }}</tt>{% endif %}, {% if user.profile.is_cof %}<tt class="user-is-cof">au COF{% else %}<tt class="user-is-not-cof">non-COF{% endif %}</tt></h2>
|
2016-07-11 19:59:32 +02:00
|
|
|
</div><!-- /.container -->
|
|
|
|
</header>
|
|
|
|
{% block interm_content %}{% endblock %}
|
|
|
|
{% endblock %}
|