aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/forms.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-08-08 17:13:51 +0100
committerMatthew Lemon <y@yulqen.org>2024-08-08 17:13:51 +0100
commit5fff811c304849169c6345da334334fc233ec64d (patch)
tree2ecf46bc5804c9f2b36832d296f1a99633f4ef74 /pyblackbird_cc/resources/forms.py
parent9c9b3084939e77618854e2cbe3cce51029a70f07 (diff)
The Cancel button is now managed by crispy forms.
Diffstat (limited to 'pyblackbird_cc/resources/forms.py')
-rw-r--r--pyblackbird_cc/resources/forms.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/pyblackbird_cc/resources/forms.py b/pyblackbird_cc/resources/forms.py
index 5a4a606..f4c6654 100644
--- a/pyblackbird_cc/resources/forms.py
+++ b/pyblackbird_cc/resources/forms.py
@@ -2,8 +2,9 @@ import logging
from typing import List, Tuple
import magic
+from crispy_forms.bootstrap import FormActions
from crispy_forms.helper import FormHelper
-from crispy_forms.layout import Submit
+from crispy_forms.layout import Submit, Field, Layout, Button
from django import forms
from pyblackbird_cc.resources.models import Resource, ResourceSubcategory
@@ -182,14 +183,20 @@ class ResourceUpdateMetadataForm(forms.ModelForm):
class ResourceUpdatePDFsForm(forms.Form):
- def __init__(self, *args, **kwargs):
+ def __init__(self, cancel_url: str, *args, **kwargs):
try:
self.resource = kwargs.pop("resource")
except KeyError:
pass
super().__init__(*args, **kwargs)
self.helper = FormHelper(self)
- self.helper.add_input(Submit("submit", "Submit"))
+ self.helper.layout = Layout(
+ Field("pdf_files"),
+ FormActions(
+ Submit("submit", "Submit", css_class="btn btn-primary"),
+ Button("cancel", "Cancel", css_class="btn btn-danger", onclick=f"location.href=''"),
+ ),
+ )
pdf_files = forms.FileField(
widget=forms.TextInput(