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/portail-citoyen2/templates/base.new.html

54 lines
1.9 KiB
HTML

{% load 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/authentic.css" />
<!-- <link rel="stylesheet" href="{{ STATIC_URL }}jquery/css/jquery-ui.custom.css" />
<link rel="stylesheet" href="{{ STATIC_URL }}ulx/css/ulx.css" /> -->
<title>{% block title %}User test{% endblock %}</title>
{{ openid_meta }}
{% block extra_scripts %}
{% endblock %}
</head>
<body {% block bodyargs %}{% endblock %} >
<div id="page">
<div id="top">
<h1>Pr@tic</h1>
</div>
{% block breadcrumb %}
{% endblock %}
<div id="content">
{% if request.user.is_authenticated %}
<div id="user">
<p>
{% blocktrans with request.user.get_full_name as username %}Hello {{ username }}.{% endblocktrans %}
<a id="logout" href="{% url 'auth_logout' %}">{% trans "Logout" %}</a></p>
</div>
{% endif %}
{% 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 %}
{% block content %}{% endblock %}
</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>