Login

Adding a field to a newform in __init__

Author:
bram
Posted:
May 15, 2007
Language:
Python
Version:
.96
Score:
2 (after 2 ratings)

When adding fields in the init of a newform, and you don't want the fields to be added after the class-attribute fields, this is a possibility... This is a bad example as the email_from could just as well have been defined as a class variable!

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
class ContactForm(forms.Form):
    to = forms.EmailField()
    message = forms.CharField(widget=forms.Textarea())
    
    def __init__(self, user, *args, **kwargs):
        super(ContactForm, self).__init__(*args, **kwargs)
        
        # user isn't logged in, so ask him for an email
        from_field = forms.EmailField()
        
        if not user.is_anonymous():
            from_field.widget = forms.HiddenInput
            from_field.initial = user.email
        
        # insert the field at the start of the fields
        new_fields = self.fields.items()
        new_fields.insert(0, ('from', from_field))
        self.fields = SortedDictFromList(new_fields)

More like this

  1. Form field with fixed value by roam 1 week, 6 days ago
  2. New Snippet! by Antoliny0919 2 weeks, 5 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months, 1 week ago
  4. get_object_or_none by azwdevops 7 months ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago

Comments

Please login first before commenting.