{% extends "base.html" %} {% load poll_extras %} {% load gravatar %} {% block content %}
{% for email in threads %}
{{email.subject}} {{email.date}}
{% if email.category_tag %} {% else %} {% endif %}
{% if email.email %} {% gravatar_img_for_email email.email 40 %}
{% endif %} {{email.sender}}
{{email.content}}
  • Tags:
  • {% for tag in email.tags %}
  • {{tag}}
  • {% endfor %}
  • {{email.participants|length}} participants
  • {{email.answers}} comments
{% empty %} Sorry no emails could be found for your search. {% endfor %} {% include "paginator.html" %}
{% for key, value in archives_length|sort %}

{{ key }}

{% endfor %}
{% endblock %} {% block additionaljs %} {% endblock %}