{% extends "base.html" %} {% block title %}{{ article.title }} - {{ super() }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ article.title }}

{% if article.author_name %} {% endif %} {% if article.view_count is not none %} {{ article.view_count }} views {% endif %}
{% if article.description %}

{{ article.description }}

{% endif %}
{{ article.html_content|safe }}
{% if article.image_url %} {% endif %} {% if article.publisher_name %}
{% if article.publisher_url %} {% endif %}
{% endif %}

Comments {{ comments.total }}

{% if current_user.is_authenticated %}
Leave a Comment
0/140 characters
{% else %}
Please log in or register to leave a comment.
{% endif %}
{% for comment in comments %}
{% if comment.is_anonymous %} Anonymous {% elif comment.author %} {{ comment.author.username }} {% else %} Unknown {% endif %} {{ comment.created_at.strftime('%B %d, %Y at %I:%M %p') if comment.created_at else 'Date not available' }}
{% if current_user.is_authenticated and (current_user.id == comment.user_id or current_user.is_admin) %}
{% endif %}

{{ comment.content }}

{% if comment.replies.count() > 0 %}
{% for reply in comment.replies.order_by('created_at').all() %}
{% if reply.is_anonymous %} Anonymous {% elif reply.author %} {{ reply.author.username }} {% else %} Unknown {% endif %} {{ reply.created_at.strftime('%B %d, %Y at %I:%M %p') if reply.created_at else '' }}
{% if current_user.is_authenticated and (current_user.id == reply.user_id or current_user.is_admin) %} {% endif %}

{{ reply.content }}

{% endfor %}
{% endif %} {% if current_user.is_authenticated %}
{% endif %}
{% endfor %}
{% if comments.pages > 1 %} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}