{% extends 'base.html' %} {% block content %}

我的文章

{% for post in page_obj %}

{{ post.title }}

{{ post.get_status_display }}

{% if post.status == 'published' %}查看{% endif %} 编辑 删除
{% empty %}

还没有文章,点击“写文章”开始。

{% endfor %} {% include 'blog/pagination.html' %} {% endblock %}