I have this
models.CharField(max_length=10,choices=LOCATION_NAME)
However, I want it to render something like this,
<select multiple="multiple">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
I am trying to add this to the django admin section.
You can render it using the SelectMultiple Widget:
https://docs.djangoproject.com/en/dev/ref/forms/widgets/#django.forms.SelectMultiple
You’ll probably be using a MultipleChoiceField in your form:
https://docs.djangoproject.com/en/1.3/ref/forms/fields/#multiplechoicefield