Does radio_admin actually work?  I've done the following:

        meta.ManyToManyField(DayToHelp, radio_admin=True,
            blank=True, null=True),

yet, I get a select list everywhere I try to reference that field.


Should I expect this to work for user forms, too?

The current way would *almost* not be a problem, as I can just do this
in my form:

  <ul style="list-style: none;" id="daystohelp">
    {% for choice in form.manipulator.daytohelps.choices %}
      <li>
        <input type="checkbox" name="daytohelps" value="{{ choice.0
}}"/>
        {{ choice.1 }}
      </li>
    {% endfor %}
  </ul>


However, it doesn't retain the selection when there's an error like it
does for the rest of the fields.  Any hints?

Reply via email to