2009-11-10 10:58:35 +05:30
|
|
|
{% extends "gramps-base.html" %}
|
|
|
|
{% load my_tags %}
|
|
|
|
|
2009-11-19 08:11:37 +05:30
|
|
|
{% block title %}Gramps-Connect: {{cview}} view {% endblock %}
|
|
|
|
{% block heading %}Gramps Connect: {{cview}} view {% endblock %}
|
2009-11-10 10:58:35 +05:30
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<p id="description">
|
2009-11-22 04:48:35 +05:30
|
|
|
<form name="SearchForm">
|
2009-11-10 10:58:35 +05:30
|
|
|
<input type="submit" value="Search:"></submit>
|
2009-12-06 10:39:43 +05:30
|
|
|
<input autocomplete="off" name="search" id="get_focus" type="input" size="50" value="{{search}}"></input>
|
2009-11-10 10:58:35 +05:30
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="pagination">
|
|
|
|
<span class="step-links">
|
|
|
|
{% ifequal page.number 1 %}
|
|
|
|
[first]
|
|
|
|
{% else %}
|
|
|
|
[<a href="?page=1{{search_query}}">first</a>]
|
|
|
|
{% endifequal %}
|
|
|
|
{% if page.has_previous %}
|
|
|
|
[<a href="?page={{page.previous_page_number}}{{search_query}}">previous</a>]
|
|
|
|
{% else %}
|
|
|
|
[previous]
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<span class="current">
|
|
|
|
Page {{ page.number }} of {{ page.paginator.num_pages }}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
{% if page.has_next %}
|
|
|
|
[<a href="?page={{ page.next_page_number }}{{search_query}}">next</a>]
|
|
|
|
{% else %}
|
|
|
|
[next]
|
|
|
|
{% endif %}
|
|
|
|
{% ifequal page.number page.paginator.num_pages %}
|
|
|
|
[last]
|
|
|
|
{% else %}
|
|
|
|
[<a href="?page={{page.paginator.num_pages}}{{search_query}}">last</a>]
|
|
|
|
{% endifequal %}
|
2009-12-06 10:39:43 +05:30
|
|
|
<b>Matches</b>: {{page.paginator.count}}/{{total}}
|
2009-11-10 10:58:35 +05:30
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
2009-11-23 03:59:42 +05:30
|
|
|
<div style="overflow:auto; height:450px;width:700px;">
|
|
|
|
|
|
|
|
{% block table_data %} <table></table> {% endblock %}
|
|
|
|
|
|
|
|
</div>
|
2009-11-10 10:58:35 +05:30
|
|
|
|
|
|
|
<div class="pagination">
|
|
|
|
<span class="step-links">
|
|
|
|
{% ifequal page.number 1 %}
|
|
|
|
[first]
|
|
|
|
{% else %}
|
|
|
|
[<a href="?page=1{{search_query}}">first</a>]
|
|
|
|
{% endifequal %}
|
|
|
|
{% if page.has_previous %}
|
|
|
|
[<a href="?page={{page.previous_page_number}}{{search_query}}">previous</a>]
|
|
|
|
{% else %}
|
|
|
|
[previous]
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<span class="current">
|
|
|
|
Page {{ page.number }} of {{ page.paginator.num_pages }}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
{% if page.has_next %}
|
|
|
|
[<a href="?page={{ page.next_page_number }}{{search_query}}">next</a>]
|
|
|
|
{% else %}
|
|
|
|
[next]
|
|
|
|
{% endif %}
|
|
|
|
{% ifequal page.number page.paginator.num_pages %}
|
|
|
|
[last]
|
|
|
|
{% else %}
|
|
|
|
[<a href="?page={{page.paginator.num_pages}}{{search_query}}">last</a>]
|
|
|
|
{% endifequal %}
|
2009-12-06 10:39:43 +05:30
|
|
|
<b>Matches</b>: {{page.paginator.count}}/{{total}}
|
2009-11-10 10:58:35 +05:30
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|