{% extends 'grades/base.html' %} {% block title %}公告管理{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}

公告管理

发布公告
重置
{% for n in notices %} {% empty %} {% endfor %}
#标题发布人状态发布时间操作
{{ forloop.counter }} {{ n.title }} {{ n.author.username|default:"-" }} {% if n.is_active %} 启用 {% else %} 禁用 {% endif %} {{ n.created_at|date:"Y-m-d H:i" }}
{% csrf_token %}
暂无公告
共 {{ notices|length }} 条公告
{% endblock %}