Draft notes template

svn: r13571
This commit is contained in:
Doug Blank 2009-11-13 05:40:11 +00:00
parent 0f59d46f09
commit dd71f833fe

View File

@ -0,0 +1,35 @@
{% extends "view_page.html" %}
{% load my_tags %}
{% block table_data %}
<table cellspacing="0" class="infolist surname">
<thead>
<tr>
<th>Note #</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>
<td></td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}