{% load i18n %} {% load tz %} {% for post in feed %}
{% if post.mp4 %} {% else %} {% trans "Click to expand image" %} {% endif %}
{% if post.status == "Publish" %} {% trans "Publish" %} {% else %} {% trans "Draft" %} {% endif %}

{{post.title}}

{{post.content|safe}} {% trans "Pub Date" %} {% if post.is_schedule %} {{ post.schedule|timezone:usertz|date:"d/m/Y" }} {% trans "at" %} {{ post.schedule|timezone:usertz|date:"h:i A" }} {% else %} {{ post.created|timezone:usertz|date:"d/m/Y" }} {% trans "at" %} {{ post.created|timezone:usertz|date:"h:i A" }} {% endif %}
{% endfor %}