{% extends "base.html" %} {% load humanize %} {% load voting_tags %} {% block content %}

News

{% csrf_token %}
{% trans "Popular" %} · {% trans "New" %}
{% for article in articles %}

{{ 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 %}
{% endfor %}
{% if paginator %}
{% endif %} {% endblock %}