The Django Application is using Bootstrap 3 to build forms. https://github.com/dyve/django-bootstrap3
I would like to replace all checkbox fields in the form with the following
    <div class="checkbox check-success checkbox-circle">
                  <input type="checkbox" value="1" id="checkbox8">
                  <label for="checkbox8">I agree</label>
    </div>
How to customize Django Form checkbox field
 
     
    