{% extends 'base.html' %} {% load staticfiles %} {% block title %}安生 | 仪表板{% endblock %} {% block custom_css %} {% endblock %} {% block content-wrapper %}

文章列表 包含已发布和未发布的文章

{% for article in articles %} {% endfor %}
文章标题 创建时间 发布时间 阅读数 评论数 状态 操作
{{ article.title }} {{ article.created_time }} {{ article.release_time }} {{ article.read }} {{ article.get_comment_num }} {% if article.status == '0' %} {% elif article.status == '1' %} {% endif %}
{% endblock %} {% block custom_js %} {% endblock %}