{% extends 'base.html' %} {% load static %} {% load custom_tags %} {% block content %}

{{ "Articles"|upper }}

{{ greetings }}

{% custom_range 1 10 as range %} {% for num in range %} {{ num }} {% endfor %} {% if perms.web.add_article %} Создать {% endif %} {% include 'partial/search_form.html' %} {% for article in articles %}


{{ article.title }}

{# {% if user.is_authenticated %}#}

Подробнее

{# {% endif %}#}


{% endfor %} {% if is_paginated %} {% include 'partial/pagination.html' %} {% endif %} {% endblock %}