X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/536566a42958cc1f0dc797a4f892836e6fddf66f..9a5e7a1f45c46fbf3509cb660e29806e7ca05a8d:/src/club/forms.py?ds=inline diff --git a/src/club/forms.py b/src/club/forms.py index 8df778338..2ebe4e58d 100644 --- a/src/club/forms.py +++ b/src/club/forms.py @@ -3,11 +3,12 @@ # from decimal import Decimal from django import forms +from newsletter.forms import NewsletterForm from . import models from .payu.forms import CardTokenForm -class ScheduleForm(forms.ModelForm): +class ScheduleForm(NewsletterForm, forms.ModelForm): class Meta: model = models.Schedule fields = ['monthly', 'amount', 'email']