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 }}