23 lines
581 B
HTML
23 lines
581 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block content %}
|
|
<h1>{{ article.title }}</h1>
|
|
<p>{{ article.content }}</p>
|
|
|
|
<h3>评论</h3>
|
|
<div class="comments">
|
|
{% for comment in comments %}
|
|
<div class="comment">
|
|
<p><strong>{{ comment.user.username }}:</strong> {{ comment.content }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% if current_user.is_authenticated %}
|
|
<form action="/comments" method="POST" class="form">
|
|
<textarea name="content" placeholder="添加评论..." required></textarea>
|
|
<button type="submit">提交评论</button>
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|