Skip to content

Commit

Permalink
Merge pull request #91 from FOSDEM/remove_code
Browse files Browse the repository at this point in the history
Remove unused forms
  • Loading branch information
johanvdw authored Jan 27, 2025
2 parents 5abe841 + adc6c63 commit 336b36b
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions volunteers/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,6 @@

from volunteers.models import VolunteerTask, TaskCategory

class AddTasksForm(forms.Form):
tasks = forms.ModelMultipleChoiceField(queryset=VolunteerTask.objects.none(), widget=forms.CheckboxSelectMultiple())


class EditTasksForm(forms.Form):
date = forms.TimeField(label=_('Date'), required=True)
start_time = forms.TimeField(label=_('Start time'), required=True)
end_time = forms.TimeField(label=_('End time'), required=True)
name = forms.CharField(label=_('Name'), max_length=30, required=True)
location = forms.CharField(label=_('Location'), max_length=30, required=True)
description = forms.CharField(label=_('Description'), max_length=30, required=False, widget=forms.Textarea)
fosdem_url = forms.CharField(label=_('Fosdem URL'), max_length=100, required=False, widget=forms.Textarea)


class EventSignupForm(forms.Form):
first_name = forms.CharField(max_length=255, required=True, label=_('First name'))
Expand Down

0 comments on commit 336b36b

Please sign in to comment.