aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/resources
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-10-22 21:05:14 +0100
committerMatthew Lemon <y@yulqen.org>2024-10-22 21:05:14 +0100
commite0b7249dc8be2bc1f20e60b46cfb843c7e0058bd (patch)
tree8e80e87384fb00a6187a2264b85af0bae3995326 /alphabetlearning/resources
parentb68e88b7643920caeb5d9d9cda8cdd08d51e10c9 (diff)
Removes form helper() and changes font in input
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