I am using django comments app and am using bootstrap template for UI.
In bootstrap I have;
<div class="form-group col-lg-4 col-md-4 col-sm-4 col-xs-12">
<label class="sr-only" for="inputName">Name</label>
<input class="form-control" id="inputName" name="author" type="text" value="" aria-required="true" placeholder="Your Name">
</div>
and other div classes to fill in mame , email, url and comments.
Django comments app's
{% get_comment_form for post as form %}
allows manually render fields like;
{{form.user_name}}
{{form.user_email}}
etc.
Question: How do I integrate `{{form.user_name}}` and other fields in the div class?
Thanks for your help.