|
@@ -0,0 +1,167 @@
|
|
|
|
|
+{% load static %}
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
|
+<html lang="fr" class="h-100">
|
|
|
|
|
+<head>
|
|
|
|
|
+<meta charset="utf-8">
|
|
|
|
|
+<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
+<meta name="keywords" content="{%if page.p_mots_clefs%}{{page.p_mots_clefs}}{% endif %}">
|
|
|
|
|
+<meta name="description" content="{% if page.p_description %}{{page.p_description}}{% endif %}">
|
|
|
|
|
+{% block add_meta_description %}{% endblock %}
|
|
|
|
|
+<title>Tools.Duhaz.fr{% if page.p_meta_title %} | {{page.p_meta_title}}{% elif page.p_titre %} | {{page.p_titre}}{% endif %}</title>
|
|
|
|
|
+<link rel="shortcut icon" href="/static/favicon.ico">
|
|
|
|
|
+<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
|
|
|
|
+<link href="//fonts.googleapis.com/css2?family=Kufam&display=swap" rel="stylesheet">
|
|
|
|
|
+<script src="https://kit.fontawesome.com/7cf2a101ac.js"></script>
|
|
|
|
|
+{% if not request.user.is_authenticated %}
|
|
|
|
|
+<script data-ad-client="ca-pub-0171697375250839" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
|
|
|
+{% endif %}
|
|
|
|
|
+<style type="text/css">
|
|
|
|
|
+ img {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ max-width: 100%;
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ }
|
|
|
|
|
+ body {
|
|
|
|
|
+ background-image: url('{% static 'background.jpeg'%}');
|
|
|
|
|
+ background-color:black;
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ background-size: cover;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-attachment: fixed;
|
|
|
|
|
+ }
|
|
|
|
|
+</style>
|
|
|
|
|
+</head>
|
|
|
|
|
+<body class="d-flex flex-column h-100">
|
|
|
|
|
+<header style="color: #fff; font-family: Kufam', cursive;">
|
|
|
|
|
+ <nav class="navbar navbar-expand-lg navbar-dark" style="background-color: #093554;">
|
|
|
|
|
+ <div class="container-fluid">
|
|
|
|
|
+ <a class="navbar-brand" href="{% url 'core_index' %}"><i class="fas fa-tools"></i> Les Outils de Mr Duhaz </a>
|
|
|
|
|
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
|
|
+ {% if page.p_menu_haut %}
|
|
|
|
|
+ <ul class="navbar-nav mr-auto">
|
|
|
|
|
+ {% for item in page.p_menu_haut %}
|
|
|
|
|
+ <li class="nav-item"><a class="nav-link" href="{{item.p_adresse}}">{% if item.p_icone %}<i class="{{item.p_icone}}" ></i> {% endif %}{{item.p_titre}}</a></li>
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ <div class="navbar-nav dropdown">
|
|
|
|
|
+ <a class="nav-link dropdown-toggle mr-5" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fas fa-id-badge" ></i> Mon profil</a>
|
|
|
|
|
+ <div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
|
|
|
|
|
+ {% if request.user.is_authenticated %}
|
|
|
|
|
+ {% if request.user.is_staff %}
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'admin:index' %}" ><i class="fas fa-cog" ></i> Admin</a>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'core_logout' %}" ><i class="fas fa-sign-out-alt" ></i> Log out</a>
|
|
|
|
|
+ {% else %}
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'core_login' %}?next={{ request.path }}" ><i class="fas fa-sign-in-alt" ></i> Se connecter</a>
|
|
|
|
|
+ <a class="dropdown-item" href="{% url 'core_registration' %}?next={{ request.path }}" ><i class="fas fa-edit" ></i> Inscription</a>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pos-f-t d-lg-none justify-content-end">
|
|
|
|
|
+ <div class="collapse" id="navbarToggleExternalContent">
|
|
|
|
|
+ <div class="p-4" style="background-color: #093554;">
|
|
|
|
|
+ {% if page.p_menu_haut %}
|
|
|
|
|
+ <ul class="navbar-nav">
|
|
|
|
|
+ {% for item in page.p_menu_haut %}
|
|
|
|
|
+ <li class="nav-item"><a class="nav-link" href="{{item.p_adresse}}">{% if item.p_icone %}<i class="{{item.p_icone}}" ></i> {% endif %}{{item.p_titre}}</a></li>
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ <hr>
|
|
|
|
|
+ {% if request.user.is_authenticated %}
|
|
|
|
|
+ {% if request.user.is_staff %}
|
|
|
|
|
+ <li class="nav-item"><a class="nav-link" href="{% url 'admin:index' %}" ><i class="fas fa-cog" ></i> Admin</a></li>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ <li class="nav-item"><a class="nav-link" href="{% url 'core_logout' %}?next={{ request.path }}" ><i class="fas fa-sign-out-alt" ></i> Log out</a></li>
|
|
|
|
|
+ {% else %}
|
|
|
|
|
+ <li class="nav-item"><a class="nav-link" href="{% url 'core_login' %}?next={{ request.path }}" ><i class="fas fa-sign-in-alt" ></i> Se connecter</a></li>
|
|
|
|
|
+ <li class="nav-item"><a class="nav-link" href="{% url 'core_registration' %}?next={{ request.path }}" ><i class="fas fa-edit" ></i> Inscription</a></li>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <nav class="navbar navbar-dark" style="background-color: #093554;">
|
|
|
|
|
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
|
+ <span class="navbar-toggler-icon"></span>
|
|
|
|
|
+ </button>
|
|
|
|
|
+ </nav>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </nav>
|
|
|
|
|
+</header>
|
|
|
|
|
+<main role="main" class="flex-shrink-0">
|
|
|
|
|
+<div class="container-fluid mw-100">
|
|
|
|
|
+ <div class="row p-2">
|
|
|
|
|
+ {% block left_panel %}
|
|
|
|
|
+ {% endblock %}
|
|
|
|
|
+ <div class="col-lg-8 p-0">
|
|
|
|
|
+ {% if messages %}
|
|
|
|
|
+ <div class="card-body messages p-0 mr-3 ml-3">
|
|
|
|
|
+ {% for message in messages %}
|
|
|
|
|
+ <div class="m-2 alert alert-dismissable alert-{{ message.tags }}" data-alert="alert">
|
|
|
|
|
+ <button type="button" class="close" data-dismiss="alert" >×</button>
|
|
|
|
|
+ {{ message }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ <div class="card" style="background-color: rgba(250,250,250,0.88);" >
|
|
|
|
|
+ {% if page.p_see_title_and_des_in_templates == True %}
|
|
|
|
|
+ <div class="card-header">
|
|
|
|
|
+ <h2>{% block title %}{% if page.p_icone != "" %}<i class="{{page.p_icone}}"></i> {% endif %}{{page.p_titre|safe}}{% endblock %}</h2>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ {% block main %}{% endblock %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% if not request.user.is_authenticated or page.p_right %}
|
|
|
|
|
+ <div class="col-lg-4">
|
|
|
|
|
+ <div class="card" style="background-color: rgba(250,250,250,0.88);" >
|
|
|
|
|
+ {% block right_panel %}
|
|
|
|
|
+ {% endblock %}
|
|
|
|
|
+ {% if not request.user.is_authenticated %}
|
|
|
|
|
+ <div class="card-body">
|
|
|
|
|
+ <h5 class="card-title"> Une Pub </h5>
|
|
|
|
|
+ <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
|
|
|
+ <!-- Pub-1 -->
|
|
|
|
|
+ <ins class="adsbygoogle"
|
|
|
|
|
+ style="display:block"
|
|
|
|
|
+ data-ad-client="ca-pub-0171697375250839"
|
|
|
|
|
+ data-ad-slot="9918621322"
|
|
|
|
|
+ data-ad-format="auto"
|
|
|
|
|
+ data-full-width-responsive="true">
|
|
|
|
|
+ </ins>
|
|
|
|
|
+ <script>
|
|
|
|
|
+ (adsbygoogle = window.adsbygoogle || []).push({});
|
|
|
|
|
+ </script>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+</div>
|
|
|
|
|
+</main>
|
|
|
|
|
+<footer class="footer mt-auto py-3 text-white" style="background-color: rgba(45, 57, 72, 0.91);">
|
|
|
|
|
+ <div class="container">
|
|
|
|
|
+ Tools.duhaz.fr - juin.2021
|
|
|
|
|
+ {% if page.p_menu_pied %}
|
|
|
|
|
+ -
|
|
|
|
|
+ {% for item in page.p_menu_pied %}
|
|
|
|
|
+ <a class="link-light" href="{{item.p_adresse}}">{{item.p_titre}}</a>{% if not forloop.last %}, {% endif %}
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
|
|
+</footer>
|
|
|
|
|
+{% block modals %}{% endblock %}
|
|
|
|
|
+<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
|
|
|
|
|
+<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
|
|
|
|
+<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
|
|
|
|
+<script>
|
|
|
|
|
+</script>
|
|
|
|
|
+{% block script %}
|
|
|
|
|
+{% endblock %}
|
|
|
|
|
+</body>
|
|
|
|
|
+</html>
|