1b87f73f5e
svn: r19710
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
{% extends "view_page.html" %}
|
|
{% load my_tags %}
|
|
|
|
{% block table_data %}
|
|
|
|
<table cellspacing="0" class="infolist surname" width="95%">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>ID</th>
|
|
<th>Father</th>
|
|
<th>Mother</th>
|
|
<th>Relationship</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for family in page.object_list %}
|
|
<tr class="{% cycle odd,even %}">
|
|
<td><a href="/{{view}}/{{family.handle|escape}}" class="browsecell">{{ forloop.counter|row_count:page }}</a></td>
|
|
<td><a href="/{{view}}/{{family.handle|escape}}" class="browsecell"><span class="grampsid">[{{family.gramps_id}}]</span></a>
|
|
<td><a href="/{{view}}/{{family.handle|escape}}" class="browsecell">{{family.father|make_name:user|nbsp}}</a>
|
|
<td><a href="/{{view}}/{{family.handle|escape}}" class="browsecell">{{family.mother|make_name:user|nbsp}}</a>
|
|
{% if user.is_authenticated %}
|
|
<td><a href="/{{view}}/{{family.handle|escape}}" class="browsecell">{{family.family_rel_type|escape|nbsp}}</a>
|
|
{% else %}
|
|
<td><a href="/{{view}}/{{family.handle|escape}}" class="browsecell">[Private]</a>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% if user.is_superuser %}
|
|
{% make_button "Add Family" "/family/add" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|