2009-11-10 05:28:35 +00:00
|
|
|
{% extends "gramps-base.html" %}
|
2009-11-21 23:18:35 +00:00
|
|
|
{% load my_tags %}
|
2009-11-10 05:28:35 +00:00
|
|
|
|
2009-11-17 23:48:50 +00:00
|
|
|
{% block title %}Gramps-Connect{% endblock %}
|
|
|
|
{% block heading %}Gramps-Connect{% endblock %}
|
2009-11-10 05:28:35 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2009-11-10 22:42:27 +00:00
|
|
|
<p> </p>
|
|
|
|
|
2009-12-17 00:04:22 +00:00
|
|
|
<p id="description">Welcome to Gramps-Connect, a new web-based collaboration tool.
|
2009-11-10 05:28:35 +00:00
|
|
|
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
You are now logged in
|
|
|
|
as <a href="/user/{{user.username}}">{{user.username}}</a>.
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p id="description">
|
2009-11-11 16:18:01 +00:00
|
|
|
Database information:</p>
|
|
|
|
|
2009-11-19 02:41:37 +00:00
|
|
|
<table class="infolist surname">
|
2009-11-11 16:18:01 +00:00
|
|
|
<tr>
|
|
|
|
<th>Item</th>
|
|
|
|
<th>Count</th>
|
|
|
|
</tr>
|
2009-11-10 05:28:35 +00:00
|
|
|
{% for view in views %}
|
2009-11-19 02:41:37 +00:00
|
|
|
<tr class="{% cycle odd,even %}">
|
|
|
|
<td align="left"><a href="/{{view.1}}">{{view.0}}</a></td>
|
2009-11-21 23:18:35 +00:00
|
|
|
<td align="right"><a href="/{{view.1}}">{{view.2.objects.count|format_number}}</td>
|
2009-11-11 16:18:01 +00:00
|
|
|
</tr>
|
2009-11-10 05:28:35 +00:00
|
|
|
{% endfor %}
|
2009-11-11 16:18:01 +00:00
|
|
|
</table>
|
2009-11-10 05:28:35 +00:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|