I have a ModelForm in django that generates a load of floating point field options. This is being used for a ratings system, but I'd like to allow users to select "skip" on any of the catagories (NULL is allowed in the DB for each field). Is there a native class in django for something like this that I'm missing? If not, what would be the best way to achieve this e.g. such that
{% for field in form %}
<tr>
<td><label for="{{ field.label }}" class="control-label">{{ field.label }}</label></td>
<td>{{ field }}</td>
<td></td>
</tr>
{% endfor %}
Would allow for something like {{ field.skip }} with a checkbox in the last column of a table?
Cheers