{% extends 'articles/base.html' %} {% load i18n %} {% block title %}{% trans 'Articles From' %} {{ month|date:"F Y" }}{% endblock %} {% block articles-content %}

{% trans 'Articles From' %} {{ month|date:"F Y" }}{% ifnotequal paginator.num_pages 1 %}, {% trans 'page' %} {{ page_obj.number }}{% endifnotequal %}

{% for article in page_obj.object_list %} {% include 'articles/_articles.html' %} {% endfor %} {% endblock %}