{% extends "base.html" %}
{% load gravatar %}
{% block additional_stylesheets %}
{% endblock %}
{% block content %}
{% include 'messages/first_email.html' with first_mail=message %}
{% if attachments|length %}
Attachments
{% for attachment in attachments %}
- {{attachment.name}}
({{attachment.content_type}}, {{attachment.size}} octets)
{% endfor %}
{% endif %}
{% endblock %}
{% block additionaljs %}
{% endblock %}