forked from DGNum/gestioCOF
20 lines
934 B
HTML
20 lines
934 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<header>
|
|
<div class="container banner">
|
|
<a href="{% url "gestioncof.views.home" %}">
|
|
<h1>GestioCOF</h1>
|
|
{% block homelink %}
|
|
<span class="glyphicon glyphicon-home" aria-hidden=true></span>
|
|
{% endblock %}
|
|
</a>
|
|
<div class="secondary">
|
|
<span class="hidden-xxs"> | </span>
|
|
<span><a href="{% url "gestioncof.views.logout" %}">Se déconnecter <span class="glyphicon glyphicon-log-out"></span></a></span>
|
|
</div>
|
|
<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>
|
|
</div><!-- /.container -->
|
|
</header>
|
|
{% block interm_content %}{% endblock %}
|
|
{% endblock %}
|