{% extends 'base.html' %} {% load static %} {% block head %} Объявления {% endblock head %} {% block content %}
{% for announcement in page_announcements %}
{% if announcement.updated_at == announcement.created_at %} c {{ announcement.created_at }} до {{ announcement.date_of_expiring }} {% else %} изм. c {{ announcement.updated_at }} до {{ announcement.date_of_expiring }} {% endif %}
{% if announcement.author == user.username or user.role == 'Администратор' %} {% endif %}

{{ announcement.title }}

{{ announcement.body }}

{{ announcement.author }}
{% load split_filter %}
{% endfor %}
{% endblock content %}