跟着麦叔学flask,感谢b站麦叔

This commit is contained in:
2025-12-21 02:38:00 +08:00
parent 582f8a9234
commit 7e44fe8a2a
20 changed files with 690 additions and 0 deletions

5
templates/study/delete.html Executable file
View File

@@ -0,0 +1,5 @@
<b>确定要删除 "{{ posts['title'] }}" 吗?</b>
<form action="{{ url_for('study.delete_posts_id', posts_id=posts['id']) }}" method="post">
<input type="submit" value="删除文章" class="btn btn-danger htn-sm" onclick="return confirm('确定要删除吗')">
</form>