2009-11-10 10:58:35 +05:30
|
|
|
{% load my_tags %}
|
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2009-12-08 08:11:52 +05:30
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2009-11-10 10:58:35 +05:30
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="" lang="">
|
|
|
|
<head>
|
2009-11-18 05:18:50 +05:30
|
|
|
<title>{% block title %}Gramps-Connect{% endblock %}</title>
|
2009-11-10 10:58:35 +05:30
|
|
|
{% block meta %}
|
|
|
|
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
|
|
|
<meta http-equiv="Content-Style-Type" content="text/css" />
|
2009-11-19 23:02:11 +05:30
|
|
|
<meta name="generator" content="Gramps 3.2.0-0.SVN12859M http://gramps-project.org/" />
|
2009-11-10 10:58:35 +05:30
|
|
|
<meta name="author" content="" />
|
|
|
|
{% endblock %}
|
2009-11-11 21:48:01 +05:30
|
|
|
<link href="/images/favicon2.ico" type="image/x-icon" rel="shortcut icon" />
|
2009-11-10 10:58:35 +05:30
|
|
|
{% block css %}
|
2010-08-18 08:06:26 +05:30
|
|
|
<link media="screen" href="/styles/css/behaviour.css" type="text/css" rel="stylesheet" />
|
|
|
|
<link media="screen" href="/styles/css/{{css_theme}}" type="text/css" rel="stylesheet" />
|
|
|
|
<link media="print" href="/styles/css/Web_Print-Default.css" type="text/css" rel="stylesheet" />
|
|
|
|
<link type="text/css" href="/styles/css/swanky-purse/jquery-ui-1.7.2.custom.css" rel="stylesheet" />
|
|
|
|
<script type="text/javascript" src="/styles/js/jquery-1.3.2.min.js"></script>
|
|
|
|
<script type="text/javascript" src="/styles/js/jquery-ui-1.7.2.custom.min.js"></script>
|
2009-11-10 10:58:35 +05:30
|
|
|
{% endblock %}
|
|
|
|
</head>
|
2011-10-13 05:43:00 +05:30
|
|
|
<body onload="document.getElementById('get_focus').focus();">
|
2009-11-10 10:58:35 +05:30
|
|
|
<div id="header">
|
2009-11-18 05:18:50 +05:30
|
|
|
<h1 id="SiteTitle">{% block heading %}Gramps-Connect{% endblock %}</h1>
|
2009-11-10 10:58:35 +05:30
|
|
|
</div>
|
|
|
|
<div id="navigation">
|
|
|
|
{% block navigation %}
|
|
|
|
<ul>
|
2011-10-13 05:43:00 +05:30
|
|
|
<li {{ tview|currentSection:"home" }}><a href="/">Home</a></li>
|
2009-11-10 10:58:35 +05:30
|
|
|
{% for view in views %}
|
2011-10-13 05:43:00 +05:30
|
|
|
<li {{tview|currentSection:view.1 }}><a href="/{{view.1}}/">{{view.0}}</a></li>
|
2009-11-10 10:58:35 +05:30
|
|
|
{% endfor %}
|
|
|
|
{% if user.is_authenticated %}
|
2010-01-02 07:39:09 +05:30
|
|
|
{% if next %}
|
|
|
|
<li><a href="/logout/?next={{next}}">Logout</a></li>
|
|
|
|
{% else %}
|
2009-11-10 10:58:35 +05:30
|
|
|
<li><a href="/logout">Logout</a></li>
|
2011-10-12 22:02:31 +05:30
|
|
|
{% endif %}
|
2009-11-10 10:58:35 +05:30
|
|
|
{% if user.is_superuser %}
|
|
|
|
<li><a href="/admin">Admin</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
2010-01-01 20:46:20 +05:30
|
|
|
{% if next %}
|
|
|
|
<li><a href="/login/?next={{next}}">Login</a></li>
|
|
|
|
{% else %}
|
2009-11-10 10:58:35 +05:30
|
|
|
<li><a href="/login/">Login</a></li>
|
2010-01-01 20:46:20 +05:30
|
|
|
{% endif %}
|
2009-11-10 10:58:35 +05:30
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div class="grampsweb">
|
2011-10-16 09:28:56 +05:30
|
|
|
{% for message in messages %}
|
|
|
|
<font color="red">{{message}}</font>
|
|
|
|
{% endfor %}
|
2009-11-10 10:58:35 +05:30
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
2011-10-16 09:28:56 +05:30
|
|
|
<div class="content">
|
2009-11-10 10:58:35 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
2009-11-11 04:12:27 +05:30
|
|
|
{% block footer %}
|
|
|
|
<p id="createdate">
|
2011-10-13 06:11:27 +05:30
|
|
|
Gramps Connect, version {{gramps_version}}.
|
2009-11-11 04:12:27 +05:30
|
|
|
</p>
|
2011-02-19 08:06:20 +05:30
|
|
|
<p id="copyright">© 2009-2011 <a href="http://www.gramps-project.org/">www.gramps-project.org</a>
|
2009-11-11 04:12:27 +05:30
|
|
|
</p>
|
2009-11-10 10:58:35 +05:30
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|