Changes between Initial Version and Version 1 of Ticket #28672
- Timestamp:
- Oct 2, 2017, 3:13:26 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28672 – Description
initial v1 11 11 class UserSelectForm(Form): 12 12 selected_users = MultipleChoiceField( 13 choices= User.objects.all()[0:4],14 initial= User.objects.all()[0:4],15 widget= SelectMultiple(attrs={'form': 'theform'}),13 choices=[('ex', 'Example'), ('ex2', 'Example2')], 14 initial='ex', 15 widget=CheckboxSelectMultiple(attrs={'form': 'theform'}), 16 16 required=True) 17 17 }}} 18 18 19 Not sure if this is fixed in Django>1.8 19 Not sure if this is fixed in Django>1.8 as I have found no other reference to the bug.