2009-11-13 11:10:11 +05:30
|
|
|
{% extends "view_page.html" %}
|
|
|
|
{% load my_tags %}
|
|
|
|
|
|
|
|
{% block table_data %}
|
|
|
|
|
2009-12-06 10:39:43 +05:30
|
|
|
<table cellspacing="0" class="infolist surname" width="95%">
|
2009-11-13 11:10:11 +05:30
|
|
|
<thead>
|
|
|
|
<tr>
|
2009-12-06 10:39:43 +05:30
|
|
|
<th>#</th>
|
2009-11-13 11:10:11 +05:30
|
|
|
<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>
|
2012-08-01 02:19:19 +05:30
|
|
|
<td><a href="/{{view}}/{{note.handle|escape}}{{args}}" class="noThumb browsecell"
|
|
|
|
{% if note.tags.all %}
|
|
|
|
style="color: {{note.tags.all.0.color|format_color}};"
|
|
|
|
{% endif %}
|
|
|
|
>
|
2009-11-13 11:10:11 +05:30
|
|
|
<span class="grampsid">[{{note.gramps_id}}]</span></a>
|
2012-08-01 02:19:19 +05:30
|
|
|
{% if user.is_authenticated or note.public %}
|
|
|
|
<td><a href="/{{view}}/{{note.handle|escape}}{{args}}" class="browsecell"
|
|
|
|
{% if note.tags.all %}
|
|
|
|
style="color: {{note.tags.all.0.color|format_color}};"
|
|
|
|
{% endif %}
|
|
|
|
>{{note.note_type|escape|nbsp}}</a>
|
|
|
|
<td><a href="/{{view}}/{{note.handle|escape}}{{args}}" class="browsecell"
|
|
|
|
{% if note.tags.all %}
|
|
|
|
style="color: {{note.tags.all.0.color|format_color}};"
|
|
|
|
{% endif %}
|
|
|
|
>{{note.text|preview:70|nbsp}}</a>
|
2009-11-13 11:10:11 +05:30
|
|
|
{% else %}
|
2012-08-01 02:19:19 +05:30
|
|
|
<td>[Private]</td>
|
|
|
|
<td>[Private]</td>
|
2009-11-13 11:10:11 +05:30
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2012-12-02 03:43:30 +05:30
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block admin_functions %}
|
2012-05-25 02:21:46 +05:30
|
|
|
{% if user.is_superuser %}
|
2012-12-02 03:43:30 +05:30
|
|
|
<div style="background-color: lightgray; padding: 2px 0px 0px 2px">
|
|
|
|
{% make_button "+Add Note" "/note/add" args %}
|
|
|
|
</div>
|
2012-05-25 02:21:46 +05:30
|
|
|
{% endif %}
|
2009-11-13 11:10:11 +05:30
|
|
|
{% endblock %}
|