{% extends "simpleblog/base.html" %} {% block title %}{{article.title}} | {{base_labels.header}}{% endblock title %} {% block content %}
{{article.created_at}} | {% if article.tags.all %} {% for tag in article.tags.all %} {{tag.name}} {% endfor %} | {% endif %} {{article.get_comments.count}} comments {% if user.is_authenticated %} | edit {% endif %}
{% if article.line_breaks_br %}{{article.content|safe|linebreaksbr}}
{% else %}{{article.content|safe}}
{% endif %}No comments yet
{% endif %} {% for comment in article.get_comments %}author: {{comment.author_name}} | {{comment.created_at}}
{{comment.text|linebreaksbr}}