{% extends "admin/base.html" %} {% block page_title %}资讯发布{% endblock %} {% block content %}
资讯列表({{articles|length}})
发布资讯
{% for a in articles %} {% else %} {% endfor %}
序号封面标题排序状态发布时间操作
{{loop.index}} {% if a.cover %}{% else %}{% endif %} {{a.title}} {{a.sort}} {% if a.status=='published'%}已发布{% else %}草稿{% endif %} {{a.created_at.strftime('%Y-%m-%d %H:%M')}} 编辑
暂无资讯,点击右上角发布
{% endblock %}