{{ post.title }}
{{ post.content }}
{% trans 'Posted on' %} {{ post.pub_date|date:"Y M d" }} {% trans 'by' %} {{ post.author }}
{% extends "base.html" %} {% load i18n %} {% load blog %} {% block title %}{% trans 'Post list' %}{% endblock %} {% block content %} {% for post in post_list %}
{{ post.content }}
{% trans 'Posted on' %} {{ post.pub_date|date:"Y M d" }} {% trans 'by' %} {{ post.author }}