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

通知公告

{% for n in notices %}
{{ n.title }} {{ n.created_at|date:"Y-m-d H:i" }} · {{ n.author.username|default:"系统" }}

{{ n.content|truncatechars:200 }}

{% if n.content|length > 200 %} 查看详情 {% endif %}
{% empty %}

暂无公告

{% endfor %} {% endblock %}