2018-09-01 19:57:09 +00:00
|
|
|
{% load static %}
|
2018-10-05 22:03:02 +00:00
|
|
|
{% load vip %}
|
2018-09-01 19:57:09 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}Coopé™ Metz{% endblock %}</title>
|
|
|
|
<link rel="shortcut icon" href="{% static 'favicon16.ico' %}" type="image/x-icon">
|
|
|
|
<link rel="icon" sizes="16x16" href="{% static 'favicon16.ico' %}" type="image/x-icon">
|
|
|
|
<link rel="icon" sizes="32x32" href="{% static 'favicon32.ico' %}" type="image/x-icon">
|
|
|
|
<link rel="icon" sizes="96x96" href="{% static 'favicon96.ico' %}" type="image/x-icon">
|
2019-01-20 08:28:11 +00:00
|
|
|
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
|
|
|
|
{% block extra_css %}{% endblock %}
|
|
|
|
{% block extra_script %}{% endblock %}
|
2019-01-06 04:18:31 +00:00
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
|
2018-09-01 19:57:09 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
<header id="header" class="alt">
|
|
|
|
<span class="logo"><img src="{%static 'Images/coope.png' %}" alt="" /></span>
|
|
|
|
<h1>{% block entete %}{% endblock %}</h1>
|
2018-10-05 22:03:02 +00:00
|
|
|
<h3>{% global_message %}</h3>
|
2018-09-01 19:57:09 +00:00
|
|
|
<nav>
|
|
|
|
{% include 'nav.html' %}
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
<nav id="nav">
|
|
|
|
{% block navbar %}{% endblock %}
|
|
|
|
</nav>
|
|
|
|
<div id="main">
|
|
|
|
{% if messages %}
|
|
|
|
<section class="main">
|
|
|
|
<ul class="messages">
|
|
|
|
{% for message in messages %}
|
|
|
|
<li {% if message.tags %} class="{{message.tags}}"{% endif %}>{{message}}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
<footer id="footer">
|
|
|
|
{% include 'footer.html'%}
|
|
|
|
</footer>
|
|
|
|
</div>
|
2019-01-20 11:14:53 +00:00
|
|
|
{% if request.user.is_authenticated %}
|
|
|
|
<script>
|
|
|
|
time = {% logout_time %};
|
|
|
|
function logout(){
|
|
|
|
window.location.replace("{% url 'users:logout' %}");
|
|
|
|
}
|
|
|
|
if(time != 0){
|
|
|
|
setTimeout(logout, 60000 * time);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
2018-09-01 19:57:09 +00:00
|
|
|
</body>
|
|
|
|
</html>
|