1d86ecd6fb
svn: r13721
35 lines
823 B
HTML
35 lines
823 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>Note Type</th>
|
|
<th>Text</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for note in page.object_list %}
|
|
<tr class="{% cycle odd,even %}">
|
|
<td>{{ forloop.counter|row_count:page }}</td>
|
|
<td><a href="/{{view}}/{{note.handle|escape}}" class="noThumb">
|
|
<span class="grampsid">[{{note.gramps_id}}]</span></a>
|
|
{% if user.is_authenticated %}
|
|
<td><a href="/{{view}}/{{note.handle|escape}}">{{note.note_type|escape}}</a>
|
|
<td><a href="/{{view}}/{{note.handle|escape}}">{{note.text|preview:40}}</a>
|
|
{% else %}
|
|
<td></td>
|
|
<td></td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|
|
|