[Answer]-With django forms how to organize fields in multiple columns?

1👍

If you’ve passed the table to the form in the request you just need to use Django template mark up:

<table>
<tr>{{ table.row_1 }}</tr>
<tr>
  <td>{{ table.row_2_col_1 }}</td>
  <td>{{ table.row_2_col_2 }}</td>
</tr>
👤deadly

Leave a comment