帖详情提供时限内编辑与软删入口,作者删除与管理员共用回收站子树语义。 Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
852 B
Cheetah
20 lines
852 B
Cheetah
{{define "post/comment_edit"}}
|
|
{{template "base/head" .}}
|
|
{{template "base/navbar" .}}
|
|
<main class="j13-main j13-main--solo">
|
|
<h1>编辑评论</h1>
|
|
<p class="j13-muted">#{{.Floor}} · <a href="/post/{{.PostID}}#floor-{{.Floor}}">返回帖子</a></p>
|
|
{{template "base/alert" .}}
|
|
<form method="post" action="/post/{{.PostID}}/comments/{{.CommentID}}/edit" class="j13-form j13-comment-form">
|
|
<input type="hidden" name="_csrf" value="{{.CSRF}}"/>
|
|
<label for="comment-edit-content">内容</label>
|
|
<textarea id="comment-edit-content" name="content" rows="6" required maxlength="8000">{{.Content}}</textarea>
|
|
<div class="j13-form__row">
|
|
<button type="submit">保存</button>
|
|
<a class="j13-btn-secondary" href="/post/{{.PostID}}#floor-{{.Floor}}">取消</a>
|
|
</div>
|
|
</form>
|
|
</main>
|
|
{{template "base/footer" .}}
|
|
{{end}}
|