{% extends "base.html" %} {% load humanize %} {% load voting_tags %} {% load activity_tags %} {% 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 %}
{% endblock %}