| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {% extends "base.html" %}
- {% block title %}管理文章 - 个人博客{% endblock %}
- {% block content %}
- <div class="admin-container">
- <h1>文章管理</h1>
- {% if posts %}
- <table class="admin-table">
- <thead>
- <tr>
- <th>标题</th>
- <th>日期</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- {% for post in posts %}
- <tr>
- <td>
- <a href="{{ url_for('view_post', post_id=post.id) }}">{{ post.title }}</a>
- </td>
- <td>{{ post.date[:16] | replace('T', ' ') }}</td>
- <td>
- <form method="POST" action="{{ url_for('delete_post', post_id=post.id) }}" onsubmit="return confirm('确定要删除「{{ post.title }}」吗?此操作不可恢复。');">
- <button type="submit" class="btn btn-danger">删除</button>
- </form>
- </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- {% else %}
- <div class="empty-state">
- <p>还没有文章。</p>
- </div>
- {% endif %}
- </div>
- {% endblock %}
|