Blockchain_KM/app/templates/admin/topics.html
2024-12-02 01:18:08 +08:00

52 lines
1.9 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="container mt-4">
<div class="d-flex justify-content-between align-items-center mb-4">
<h2>主題管理</h2>
<a href="{{ url_for('main.add_topic') }}" class="btn btn-primary">新增主題</a>
</div>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }}">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
<div class="card">
<div class="card-body">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>所屬區塊</th>
<th>標題</th>
<th>描述</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{% for topic in topics %}
<tr>
<td>{{ topic.section.title }}</td>
<td>{{ topic.title }}</td>
<td>{{ topic.description }}</td>
<td>
<a href="{{ url_for('main.edit_topic', topic_id=topic.id) }}"
class="btn btn-sm btn-primary">編輯</a>
<a href="{{ url_for('main.delete_topic', topic_id=topic.id) }}"
class="btn btn-sm btn-danger"
onclick="return confirm('確定要刪除此主題嗎?')">刪除</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}