gramps/data/templates/browse_page.html

31 lines
602 B
HTML
Raw Normal View History

2011-10-16 22:35:35 +05:30
{% extends "gramps-base.html" %}
{% load my_tags %}
{% block title %}{{sitename}}{% endblock %}
{% block heading %}{{sitename}}{% endblock %}
2011-10-16 22:35:35 +05:30
{% block content %}
<p> &nbsp; </p>
<p id="description">
Database information:</p>
<table class="infolist surname">
<tr>
<th>Item</th>
<th>Count</th>
</tr>
{% for view in views %}
<tr class="{% cycle odd,even %}">
{% if view.2 %}
<td align="left"><a href="/{{view.1}}">{{view.0}}</a></td>
<td align="left"><a href="/{{view.1}}">{{view.1|table_count}}</td>
2011-10-16 22:35:35 +05:30
{% endif %}
</tr>
{% endfor %}
</table>
{% endblock %}