{% load static %} {% load i18n %} {% include "common_libs.html" with jquery=0 v2=1 %} {{ site_name }} - {% trans '公告栏' %} {% include "_header.html" %}

{% trans '公告栏' %} {% if request.user.is_staff %}🧙🏻{% endif %}

{% if request.user.is_superuser %} {% trans '发布新公告' %} {% endif %} {% for announcement in object_list %}

{{ announcement.title }}

{{ announcement.created_time }} {% if request.user.is_superuser %} {% trans '编辑' %} {% trans '删除' %} {% endif %}

{{ announcement.get_html_content | safe }}

{% empty %}

{% trans '暂无公告' %}

{% endfor %}
{% include "partial/_footer.html" %}