~sayan-chowdhury2012/postorius/postorius

« back to all changes in this revision

Viewing changes to src/postorius/forms.py

  • Committer: Florian Fuchs
  • Date: 2015-04-16 01:18:49 UTC
  • Revision ID: flo.fuchs@gmail.com-20150416011849-kgdwgu7237ir60dq
Removed option for email verification on mass subscription. This is going to be added in another release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
717
717
 
718
718
 
719
719
class ListMassSubscription(FieldsetForm):
720
 
 
721
720
    """Form fields to masssubscribe users to a list.
722
721
    """
723
722
    emails = forms.CharField(
725
724
        widget=forms.Textarea,
726
725
    )
727
726
 
728
 
    verify_with_email = forms.BooleanField(required=False)
729
 
 
730
 
    class Meta:
731
 
 
732
 
        """
733
 
        Class to define the name of the fieldsets and what should be
734
 
        included in each.
735
 
        """
736
 
        layout = [["Mass subscription", "emails"]]
737
 
 
738
727
 
739
728
class ListMassRemoval(FieldsetForm):
740
729