{% extends "sanza/base.html" %}
{% load i18n %}{% load url from future %}
{% block document_title %}
{% if group %}
{% trans "Contacts of group" %} {{group.name}}
{% else %}
{% if opportunity %}
{% trans "Contacts in oppportunity" %} {{opportunity.name}}
{% else %}
{% trans "Search for contacts" %} {% if search %}: {{search.name}}{% endif %}
{% endif %}
{% endif %}
{% endblock %}
{% block document_content %}
{% include "Search/_section_search_form.html" %}
{% if entities or message %}
{% include "Search/_section_search_results.html" %}
{% endif %}
{% endblock %}