{% block title %} Search Results {% endblock title %} {% block content %} {% if contacts|length > 0 %}
{% for contact in contacts %}

{{ contact.first_name }} {{ contact.last_name }}

Title: {{ contact.title }}

Extension: {{ contact.extension }}

Location: {{ contact.location }}

Phone: {{ contact.phone }}

Department: {{ contact.department.name }}

{% endfor %}
{% else %}

No results.

{% endif %} {% endblock content %}