{% extends 'base.html' %} {% load static %} {% block head %} Объявления {% endblock head %} {% block content %}
{% for announcement in page_announcements %}
{% if announcement.date_of_expiring %} {% 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 %} {% else %} {% if announcement.updated_at == announcement.created_at %} {{ announcement.created_at }} {% else %} изм. {{ announcement.updated_at }} {% endif %} {% endif %}
{% if announcement.author_id == user.id or user.role == 'Администратор' %} {% endif %}

{{ announcement.title }}

{% if announcement.author_id == user.id or user.role == 'Администратор' %} {% endif %}

{{ announcement.body }}

{{ announcement.author }}
{% load filters %}
{% endfor %}

Вы уверены, что хотите удалить объявление?

Удалить
{% endblock content %}