{{ entry.action_time|date:SINGLE_LOG_ENTRY_DATE_FORMAT }}
{% if entry.is_addition %}
{% assign "Created" as entry_action %}
{% endif %}
{% if entry.is_change %}
{% assign "Changed" as entry_action %}
{% endif %}
{% if entry.is_deletion %}
{% assign "Deleted" as entry_action %}
{% endif %}
{% if entry.content_type %}
{% assign entry.content_type.name|capfirst as entry_content_type %}
{% endif %}
{% get_full_name entry.user as user_full_name %}
{% if entry.is_deletion %}
{% blocktrans with entry.content_type.id as entry_content_type_id and entry.user.id as entry_user_id and user_full_name as entry_user and entry.object_repr as entry_object_repr and entry|resolve_admin_url as entry_admin_url %}
{{ entry_object_repr }}
{% endblocktrans %}
{% else %}
{% blocktrans with entry.content_type.id as entry_content_type_id and entry.user.id as entry_user_id and user_full_name as entry_user and entry.object_repr as entry_object_repr and entry|resolve_admin_url as entry_admin_url and entry.change_message as entry_change_message %}