{% extends "simpleblog/base.html" %} {% block content %} {% for obj in article_qs %}
{{obj.created_at}} | {% if obj.tags.all %} {% for tag in obj.tags.all %} {{tag.name}} {% endfor %} | {% endif %} {{obj.get_comments.count}} comments {% if user.is_authenticated %} | edit {% endif %}
{{obj.description|linebreaksbr}}