{% load cms_tags i18n sekizai_tags staticfiles %}
{% with instance.get_media as media_feed %}
{% for media in media_feed %}
{{ media.created_time|date:'SHORT_DATETIME_FORMAT' }}
{% if media.caption %}
{{ media.caption.text }}
{% endif %}
{{ media.comment_count }} comment{{ media.comment_count|pluralize }}
{% endfor %}
{% endwith %}