テンプレートに次のコマンド フォームを挿入しました。
{% if user.is_authenticated %}
{% get_comment_form for object as form %}
<form action="{% comment_form_target %}" method="POST">
{% csrf_token %}
{{ form.comment }}
{{ form.honeypot }}
{{ form.content_type }}
{{ form.object_pk }}
{{ form.timestamp }}
{{ form.security_hash }}
<input type="hidden" name="next" value="{% url 'object_detail_view' object.id %}" />
<input type="submit" value="Add comment" id="id_submit" />
</form>
{% else %}
<p>Please <a href="{% url 'auth_login' %}">log in</a> to leave a comment.</p>
{% endif %}
IDまたはクラスなしでテキストエリアのみを表示する{{form.comment}}のスタイルを変更する最良の方法は何かアドバイスできますか。{{form.comment}} はライブラリで定義されているため、そのスタイルを変更するための直接アクセスはありません。