ae31189b32
svn: r20989
39 lines
989 B
HTML
39 lines
989 B
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>Title</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for place in page.object_list %}
|
|
<tr class="{% cycle odd,even %}">
|
|
<td>{{ forloop.counter|row_count:page }}</td>
|
|
<td><a href="/{{view}}/{{place.handle|escape}}{{args}}" class="noThumb browsecell">
|
|
<span class="grampsid">[{{place.gramps_id}}]</span></a>
|
|
{% if user.is_authenticated or place.public %}
|
|
<td><a href="/{{view}}/{{place.handle|escape}}{{args}}" class="browsecell">{{place.title|escape|nbsp}}</a>
|
|
{% else %}
|
|
<td></td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|
|
|
|
{% block admin_functions %}
|
|
{% if user.is_superuser %}
|
|
<div style="background-color: lightgray; padding: 2px 0px 0px 2px">
|
|
{% make_button "+Add Places" "/place/add" args %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|