{% extends "person/master.html"%} {% block title %}People Search{% 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 %} {% include "snippets/peopleindex.html" %} {% include "snippets/peoplesearchform.html" %} {% if showRegisterTable %} {% include "snippets/peopletable.html" %} {% endif %} {% endblock %}