86 lines
3.2 KiB
HTML
86 lines
3.2 KiB
HTML
{% load tags %}
|
|
{% load i18n %}
|
|
{% load staticfiles %}
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<title>{% block title %}{% get_config 'event_name' %}{% endblock %}</title>
|
|
<link type="text/css" rel="stylesheet" media="all" href="{% static 'styles/base.css' %}" />
|
|
<link rel="shortcut icon" href="{% static 'images/favicon.png' %}" type="image/png" />
|
|
<script type="text/javascript" src="{% static 'javascript/jquery.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'javascript/utils.js' %}"></script>
|
|
{% block header %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<a href="/" title="{% trans 'Home' %}"><div id="logo"><img src="{% static 'images/logo.png' %}"></div></a>
|
|
<div id="header_title">{% get_config 'event_name' %}</div>
|
|
<div id="header_subtitle">{% get_config 'event_description' %}</div>
|
|
<div id="header_userprofile">
|
|
<ul>
|
|
{% if user.is_authenticated %}
|
|
<li>|<a href="{% url user_logout %}">{%trans "Logout" %}</a></li>
|
|
<li>|<a href="{% url user_settings %}">{%trans "User Settings" %}</a></li>
|
|
<li>{%trans "Welcome" %}, <strong>{{ user.username }}</strong></li>
|
|
{% else %}
|
|
<li><a href="{% url user_login %}">{%trans "Login" %}</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="mainmenu">
|
|
{% block mainmenu %}
|
|
<ul>
|
|
{% for tab in tabs %}
|
|
{% if tab.permission %}
|
|
<li{% if tab.selected%} class="selected"{% endif %}>
|
|
<a href="{{ tab.url }}">{{ tab.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="wrapper">
|
|
<div id="content">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="notification {% if message.tags %}{{ message.tags }}{% endif %}">
|
|
<a class="close" href="#">
|
|
<img alt="close" title="{% trans 'Close this notification' %}" src="{% static 'images/icons/cross.png' %}">
|
|
</a>
|
|
<em>{{ message|safe }}</em>
|
|
</div>
|
|
{% endfor %}
|
|
<script>
|
|
$("div.notification").click(function () {
|
|
$(this).hide("fast");
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
<div id="footer">
|
|
<small>
|
|
© Copyright 2011 | Powered by <a href="http://openslides.org">OpenSlides</a><br />
|
|
Version: {{ openslides_version }}
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div> <!-- end wrapper -->
|
|
|
|
<div id="submenu">
|
|
<div class="section">
|
|
{% block submenu %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|