{% extends 'base.html' %} {% load static %} {% block title %}系统公告 - 茄子在线检测系统{% endblock %} {% block content %}

系统公告

获取最新的系统更新与维护通知

{% for announcement in announcements %}

{{ announcement.title }}

{{ announcement.content }}

发布于:{{ announcement.created_at }}
{% if user.is_authenticated and user.is_superuser %} {% endif %}
{% empty %}
暂无公告

当前没有发布的系统消息

{% endfor %}
{% if user.is_authenticated and user.is_superuser %}
发布新公告
{% endif %}
{% endblock %}