2009-11-10 10:58:35 +05:30
|
|
|
{% extends "gramps-base.html" %}
|
|
|
|
|
|
|
|
{% block title %}GRAMPS Connect - main page {% endblock %}
|
2009-11-11 04:12:27 +05:30
|
|
|
{% block heading %}GRAMPS Connect - main page {% endblock %}
|
2009-11-10 10:58:35 +05:30
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2009-11-11 04:12:27 +05:30
|
|
|
<p> </p>
|
|
|
|
|
2009-11-10 10:58:35 +05:30
|
|
|
<p id="description">Welcome to GRAMPS Connect, a new web-based collaboration tool.
|
|
|
|
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
You are now logged in
|
|
|
|
as <a href="/user/{{user.username}}">{{user.username}}</a>.
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p id="description">
|
|
|
|
Database information:
|
|
|
|
<ul>
|
|
|
|
{% for view in views %}
|
|
|
|
<li><a href="/{{view.1}}">{{view.0}}</a> ({{view.2}} records)</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|