This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pratic-themes/authentic2/templates/authentic2/base.html

77 lines
2.7 KiB
HTML

{% load authentic2 staticfiles i18n %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="{{ STATIC_URL }}pratic2/style.css" />
<link rel="stylesheet" href="{{ STATIC_URL }}pratic2/portail-citoyen.css" />
<!-- <link rel="stylesheet" href="{{ STATIC_URL }}jquery/css/jquery-ui.custom.css" />
<link rel="stylesheet" href="{{ STATIC_URL }}ulx/css/ulx.css" /> -->
<title>Connexion CDG59</title>
{% block extra_scripts %}
{% endblock %}
{% renderblock "css" %}
{% renderblock "js" %}
</head>
<body {% block bodyargs %}{% endblock %} >
<div id="page">
<div id="top">
<h1>Pr@tic</h1>
</div>
{% block breadcrumb %}
{% endblock %}
<div id="content">
{% block messages %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}
{% if user.is_authenticated %}
<div id="nav">
<p>Bonjour {{ user.get_full_name }}</p>
<ul>
<li id="top-menu-demandes" class="sibling">
<a href="{{ INTRANET_URL }}">Accueil</a>
</li>
<li id="top-menu-demandes" class="sibling">
<a href="/accounts/">Mon compte</a>
</li>
<li id="top-menu-demandes" class="sibling">
<a href="{{ INTRANET_URL }}/demandes/">Demandes</a>
</li>
<li id="top-menu-abonnements" class="sibling">
<a href="{{ INTRANET_URL }}/abonnements/">Abonnements</a>
</li>
<li id="top-menu-aide" class="sibling">
<a href="{{ INTRANET_URL }}/aide/">Aide</a>
</li>
<li id="top-menu-aide" class="sibling">
<a href="/logout/">Déconnexion</a>
</li>
</ul>
</div>
{% endif %}
<div id="main-content">
{% block content %}{% endblock %}
</div> <!-- main-content -->
</div>
<div id="footer">
<img id="europe" alt="Europe" src="{% static "pratic2/imageFooter/Europe.png" %}" />
<img id="france" alt="République française" src="{% static "pratic2/imageFooter/RepFrancaise.png" %}" />
<img id="npdc" alt="Nord pas de calais" src="{% static "pratic2/imageFooter/NPDC.png" %}" />
</div>
<div id="head"><p id="lasso">Powered by Authentic</p></div>
</div>
</body>
</html>