From 0dfdcf3c4eca0d3c090ed8c6ae8743e661d0d806 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 30 Oct 2020 10:41:30 -0700 Subject: [PATCH] Didn't end up using a readthrough form --- bookwyrm/forms.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bookwyrm/forms.py b/bookwyrm/forms.py index 1edc5d5c..dbe3cb88 100644 --- a/bookwyrm/forms.py +++ b/bookwyrm/forms.py @@ -159,9 +159,3 @@ class CreateInviteForm(CustomForm): choices=[(i, "%d uses" % (i,)) for i in [1, 5, 10, 25, 50, 100]] + [(None, 'Unlimited')]) } - - -class ReadThroughForm(CustomForm): - class Meta: - model = models.ReadThrough - fields = ['user', 'book', 'start_date', 'finish_date']