ee91c17d4b
svn: r13614
35 lines
716 B
HTML
35 lines
716 B
HTML
{% extends "gramps-base.html" %}
|
|
|
|
{% block title %}Gramps-Connect{% endblock %}
|
|
{% block heading %}Gramps-Connect{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p> </p>
|
|
|
|
<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:</p>
|
|
|
|
<table class="infolist">
|
|
<tr>
|
|
<th>Item</th>
|
|
<th>Count</th>
|
|
</tr>
|
|
{% for view in views %}
|
|
<tr><td align="left"><a href="/{{view.1}}">{{view.0}}</a></td>
|
|
<td align="right"><a href="/{{view.1}}">{{view.2.objects.count}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|
|
|