{% extends "base.html" %} {% load humanize %} {% load voting_tags %} {% load activity_tags %} {% load comments %} {% block extra_head %} {% comment %} /* If your site contains an 'extra_head' block, and jQuery, this will allow your 'like' clicks to be AJAXed instead of the old fashioned way. Completely not needed. */ {% endcomment %} {% endblock %} {% block content %}

{{ article.title|title }}


{% vote_by_user user on article as vote %} {% if vote.vote == 1 %} {% else %} {% endif %}

{{ article.site_name }} - {{ article.description }}

Submitted by {{ article.user.username }}, {{ article.created|naturaltime }}
{{ article.comment_count }} comments {% if user.is_superuser %} · Delete · Edit {% endif %}
{% if COMMENTS_ENABLED %}

Comments


{% get_comment_list for article as comment_list %} {% for comment in comment_list %}
{{ comment.user.username }}
{{ comment.comment }}
{{ comment.submit_date|timesince }} ago
{% endfor %}
{% if user.is_authenticated %} {% get_comment_form for article as form %}
{% csrf_token %} {{ form.content_type }} {{ form.object_pk }} {{ form.timestamp }} {{ form.security_hash }}
{% else %}

Please log in to leave a comment.

{% endif %}
{% endif %}
{% endblock %}