{% if when %}
{{ when|date:"SHORT_DATE_FORMAT" }}
{% endif %}
{% if type == 'plain' %}
{{ info }}
{% else %}
{% with info as user %}
{{ user.get_profile.get_full_name }}
{% endwith %}
{% endif %}
{% if who %}
({% trans "subscribed by" %}
{% with who as user %}
{{ user.get_profile.get_full_name }}
{% endwith %}
)
{% endif %}