{% extends "base.html" %} {% block title %} Search Results {% endblock title %} {% block content %}
{% if contacts %}
{% for contact in contacts %} {% endfor %}
Name Title Extension Location Phone Department
{{ contact.first_name }} {{ contact.last_name }} {{ contact.title }} {{ contact.extension }} {{ contact.location }} {{ contact.phone }} {{ contact.department.name }}
{% if is_paginated %}
{% if page_obj.has_previous %} {% else %} {% endif %} {% if page_obj.has_next %} {% else %} {% endif %}
{% endif %} {% else %}

No results.

{% endif %} {% endblock content %}