I’m wondering whether it’s acceptable to use tables for forms.
Strictly speaking, name/value pairs are tabular data, aren’t they? And a form is just a user customisable set of name/value pairs. So is it right to use tables in this case? Or should I use divs styled with CSS?
Both are correct.
I preffer using some
div/li, as that allows me to make some different layouts, buttablesforformsare not frowned upon.Actually, by default, Django gives you table formated forms.