styleguide/templates/styleguide_radio_checkbox_example.html
{% load frontend %}
<form method="post"
action="{% url 'styleguide:radio-checkbox' %}">
{% csrf_token %}
{% with form=radio_checkbox_form %}
{% fieldset form.radios %}
{% fieldset form.checkboxes %}
{% endwith %}
<button type="submit" class="usa-button usa-button-primary">Submit</button>
</form>