How to display choicefield select widget on template?
问题 This is my view: CHOICES = (('10','10'), ('20','20'),('30','30'), ('50','50')) class Droplist (forms.Form): number = forms.ChoiceField(choices = CHOICES) def page_objects(request): if request.method == 'POST': # If the form has been submitted... form = Droplist(request.POST) # A form bound to the POST data if form.is_valid(): # All validation rules pass pass #pages = form.cleaned_data['value'] #return AutoPaginateNode(paginate_by=pages) # Redirect after POST else: form = Droplist() # An