標準の django コメント フレームワークを使用しています。
テンプレート:
<h2>Add comment</h2> {% get_comment_form for post as form %}
<form action="{% comment_form_target %}" method="post" > {% csrf_token %}
{{form.content_type}}{{form.object_pk}}{{form.timestamp}}{{form.security_hash}}
Comment:<br />
{{form.comment}}
<input type="hidden" name="next" value="{{ request.get_full_path }}#comment" />
<button class="btn btn-large btn-primary" type="submit">Post</button>
</form>
{{form.comment}}
フィールドサイズを変更するにはどうすればよいですか? <p>
orでラップしようとしまし<div>
たが、うまくいきませんでした。どうも!