#4860: Labels missing for tags in newforms widgets
------------------------+---------------------------------------------------
   Reporter:  russellm  |                Owner:  sandro         
     Status:  closed    |            Component:  django.newforms
    Version:  SVN       |           Resolution:  worksforme     
   Keywords:            |                Stage:  Accepted       
  Has_patch:  0         |           Needs_docs:  0              
Needs_tests:  1         |   Needs_better_patch:  0              
------------------------+---------------------------------------------------
Changes (by sandro):

  * status:  new => closed
  * resolution:  => worksforme

Comment:

 All of the generated labels looked good to me, here's how I tested.
 
 {{{
 PRIVACY_CHOICES = (
     ('Y', 'YES'),
     ('N', 'NO'),
 )
 class SurveyForm(forms.Form):
     name = forms.CharField(max_length=20)
     likes_a = forms.BooleanField()
     likes_b =
 
forms.BooleanField(widget=forms.CheckboxSelectMultiple(choices=PRIVACY_CHOICES))
     is_private =
 forms.BooleanField(widget=forms.RadioSelect(choices=PRIVACY_CHOICES))
 
 }}}

-- 
Ticket URL: <http://code.djangoproject.com/ticket/4860#comment:4>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to