{% extends "persons/master.html"%} {% block title %}Search person{% endblock %} {% block content %}

Search people

{% if isResultsRequest %} {% if objectCount %} {% ifequal objectCount 1 %}

One person was found.

{% else %}

There were {{ objectCount }} people found.

{% endifequal %} {% else %} {% if userQuery %}

Sorry, nobody was found in that search.

{% else %}

Sorry, nobody was found under this letter.

{% endif %} {% endif %} {% else %}

Please search for registered people below.

{% endif %}
A B C D E F G H I J K L M N O P Q R S T U V X Y Z

{% if showRegisterTable %} {% for person in domainObjectList %} {% endfor %}
{{ person.getLabelValue|escape }}
{% endif %} {% endblock %}