diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-17 13:31:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-17 13:31:20 +0100 |
commit | 373a9d9531f2cb7ef954f7af14baaea33b74bdff (patch) | |
tree | b86d4859397a7cc56d8c1b0678c38b8cb1398674 /ishtar_common/forms.py | |
parent | ddcbfb661def13467815da18d90ace9a3c30197a (diff) | |
download | Ishtar-373a9d9531f2cb7ef954f7af14baaea33b74bdff.tar.bz2 Ishtar-373a9d9531f2cb7ef954f7af14baaea33b74bdff.zip |
Custom forms: admin form
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r-- | ishtar_common/forms.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index 5c3de7b77..d0c2bb035 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -298,6 +298,11 @@ class ManageOldType(object): self.fields[field_name].help_text = model.get_help() +class CustomForm(object): + form_admin_name = "" + form_slug = "" + + class DocumentGenerationForm(forms.Form): """ Form to generate document by choosing the template |