{% extends 'base.html' %} {% load staticfiles %} {% block title %} 顯示所有新聞 {% endblock %} {% block content %}

新聞列表

{% csrf_token %} {% for item in items %} {% empty %}
目前新聞資料庫中沒有任何資料!
{% endfor %}
分類標題發表時間點閱修改刪除
{{item.catego}}
{{item.title}} {{item.pubtime}} {{item.press}} 編輯 刪除
{% if currentpagenum >= 2 %} 上一頁 {% endif %} {% if currentpagenum < totalpagenum %} 下一頁 {% endif %}

{{message01}}

{% endblock %}