Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
チェックボックスを次のブートストラップ設計に準拠させたい:
<label class="checkbox"> <input type="checkbox"> Check me out </label>
私は一生、Djangoでこれを行う方法を理解できません(Googleで検索しました)。
Django がフィールドを出力する方法が気に入らない場合は、テンプレートで手動で行う必要があります。
<label class="checkbox" for="{{ form.my_checkbox.id_for_label }}"> {{ form.my_checkbox }} {{ form.my_checkbox.label }} </label> {{ form.my_checkbox.errors }}