{% extends "emails/base.html" %} {% load i18n %} {% load email_tags %} {% load base_filters %} {% block title %}{{ block.super }}{% trans 'E-mail View'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% emails_nav email %}
{% emails_options email %}

{% trans 'E-mail View'%}

{% trans "Sender:" %} {{email.sender}} {% trans "Reply To: " %}{{ email.reply_to }}
{% trans "Content Type: " %}{{email.content_type}}{% trans " Created on: " %}{{ email.create_dt|date:'long' }}
{% trans "Subject: " %}{{email.subject}}
{% trans "Click here to view the entire e-mail body in the new window " %}
{% trans "Recipient: " %}{{email.recipient|obfuscate_email }}
{% trans "Recipient cc: " %}{{email.recipient_cc|obfuscate_email }}
{% trans "Creator: " %}{{email.creator.username}}

{% endblock %}