{% extends "email_layout.txt" %}

{% block content %}
#########################
# Saved Searches Report #
#########################

This is a report for search saved as "{{search.name}}"

{% if not docs %}
*No document found with this search*
{% else %}
Here are the found documents:
    {% for doc in docs %}
    • {{doc.headline}} ({{doc.guid}})
    {% endfor %}
{% endif %}
{% endblock %}
