{% extends "base.html" %} {% block title %}Contacts - Narad{% endblock %} {% block content %}

Contacts

{% if query %}

Search Results

{% for result in results %}
{{ result.title }}

{{ result.body }}

{{ result.entity_type }} #{{ result.entity_id }}
{% else %}

No matches.

{% endfor %}
{% endif %}

All Contacts

{% endblock %}