What is the most pythonic way to implement django ModelForm for model with 9 fields, which will be split into two columns in the template? Something like this:
<form>
<div class="column-1">
5 fields for column 1
</div>
<div class="column-2">
4 fields for column 2
</div>
</form>
I think the easiest and cleanest way is to stick to the methods outlined in the docs…