{% extends "forum/profile.html" %} {% load i18n %} {% block profile_content %}
You got {{ new_messages.count }} new message{{ new_messages.count|pluralize }}.
{% if object_list %} {% for message in object_list %} {% endfor %}
{% trans "Subject" %} {% trans "Author" %} {% trans "Date" %}
{% if not message.was_read %} new {% else %} read {% endif %} {{ message }} {% with message.author as author %} {{ author }} {% endwith %} {{ message.creation_time }}
{% endif %}
{% endblock %}