共 {{ page_obj.paginator.count }} 篇文章
-
{% for article in articles %}
- {% for tag in article.get_categorys %} {{ tag.name }} {% endfor %}
{% if request.user == article.author %}
{% endif %}
{% if article.editor == 'md' %} M {% else %} R {% endif %} {% if article.original == 'no' %} 转 {% else %} 原 {% endif %} {{ article.title }} {% if request.user == article.author %} {{article.author}} {% else %} 匿名 {% endif %} 发布于 {{ article.created_time | date:"Y-m-d H:i:s" }} {{ article.views }}
{{ article.abstract |safe}}
-
分类:
-
{% if page_obj.has_previous %}
- 上一页 {% endif %} {% for page_info in page_obj.paginator.page_range %}
- {{ page_info }} {% endfor %} {% if page_obj.has_next %}
- 下一页 {% endif %}