{% blocktrans with object.author as author and object.publish_at|naturalday as publish_at %}Published at {{publish_at}}, author {{author}}{% endblocktrans %}.
{% if settings.HAS_TAGGING %}
{% with object.get_tags as object_tags %}
{% if object_tags %}{% trans 'Tags:' %}
{% for tag in object_tags %}
{{tag.name}}{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% endif %}