{% extends "base.html" %} {% block title %}Reports - {{ super() }}{% endblock %} {% block content %}

Reports

{% if reports.total > 0 %}
{% for report in reports.items %} {% endfor %}
Date Alerts Vendors & Products
{{ report.created_at.strftime("%b %d '%y at %H:%M") }} {{ report.alerts|length }} {{ report.details|report_excerpt|safe }}
{{ pagination.links }}
{% else %}

No report yet. Did you subscribe to vendors or products ?

{% endif %}
{% endblock %}