This is my form on my template
<div class="form-box">
<form method="post">
{% csrf_token %}
<div class="form-group">
{{ form.first_name.label_tag }}
{{ form.first_name }}
</div>
<div class="form-group">
{{ form.last_name.label_tag }}
{{ form.last_name }}
</div>
On the web page after each label there’s a colon: how do I get rid of that colon?