aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/resources
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/resources')
-rw-r--r--alphabetlearning/resources/forms.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/alphabetlearning/resources/forms.py b/alphabetlearning/resources/forms.py
index c7eba4c..6eee0b8 100644
--- a/alphabetlearning/resources/forms.py
+++ b/alphabetlearning/resources/forms.py
@@ -33,8 +33,6 @@ def _create_choices_tuple() -> list[tuple[str, str]]:
class ResourceCreateForm(forms.Form):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
- self.helper = FormHelper(self)
- self.helper.add_input(Submit("submit", "Submit"))
self.fields["subcategories"].choices = _create_choices_tuple()
pass