{% extends "base.html" %} {% block content %} {% load taggit_templatetags2_tags %}
{% for post in posts %}
{{ post.published_date }}

{{ post.title }}

{{ post.text|linebreaks }}

Tags: {% for tag in post.tags.all %} {{ tag.name }} {% if not forloop.last %}, {% endif %} {% endfor %}

{{ post.author }}

{% endfor %}
{% endblock %}