{% extends "django_messages/base.html" %} {% load i18n %} {% load custom_date %} {% load wlprofile_extras %} {% block title %} Trash - {{ block.super }} {% endblock %} {% block msg_title %}Trash{% endblock %} {% block msg_content %} {% for message in message_list %} {% endfor %}
{% trans "Sender" %} {% trans "Recipient" %} {% trans "Subject" %} {% trans "Received" %} {% trans "Action" %}
{{ message.sender|user_link }} {{ message.recipient|user_link }} {% if message.replied %} replied {% endif %} {{ message.subject }} {{ message.sent_at|custom_date:user }} undelete

{% trans "Deleted messages are removed from the trash at unregular intervals. Don't rely on this feature for long-time storage." %}

{% endblock %}