{% extends "base.jinja2" %} {% block title %}List of contacts – {{ app_name }}{% endblock %} {% block content %}

Showing: {{ cat }} · New contact

Show by:

Letter: {% set typ_list = 'ABCDEFGHIJKLMNOPQRSTUVWYZ' %} {% for t in typ_list %} {{ t }} · {% endfor %}

All · Expired · Sane

{% if count > people.count() %}

Showing {{ people.count() }} people of {{ count }} total.

{% if count > pageno * 50 %}

Next page{% if pageno > 1 %} · Prev page{% endif %}

{% elif pageno > 1 %} Prev page

{% endif %} {% else %}

{{ count }} people.

{% endif %} {% for p in people %} {% endfor %}
{{ p.status_str() }} {{ p.code }} {{ p.display_name }}
{% if count > people.count() %}

Showing {{ people.count() }} people of {{ count }} total.

{% if count > pageno * 50 %}

Next page{% if pageno > 1 %} · Prev page{% endif %}

{% elif pageno > 1 %} Prev page

{% endif %} {% else %}

{{ count }} people.

{% endif %} {% endblock %}