diff --git a/events/forms.py b/events/forms.py index 078a49a..01a4b73 100644 --- a/events/forms.py +++ b/events/forms.py @@ -183,6 +183,10 @@ class TeamDefinitionForm(forms.ModelForm): class DeleteTeamForm(forms.Form): confirm = forms.BooleanField(label="Yes, delete team", required=True) +class TeamContactForm(forms.Form): + to = forms.ChoiceField(label=_("")) + body = forms.CharField(label=_(""), widget=forms.widgets.Textarea) + class TeamEventForm(forms.ModelForm): recurrences = recurrence.forms.RecurrenceField(label="Repeat", required=False) class Meta: diff --git a/get_together/templates/get_together/base.html b/get_together/templates/get_together/base.html index 1f52352..37776fd 100644 --- a/get_together/templates/get_together/base.html +++ b/get_together/templates/get_together/base.html @@ -48,10 +48,10 @@