summaryrefslogtreecommitdiffstats
path: root/src/frest/templates/form.rst
diff options
context:
space:
mode:
authorSanto Cariotti <dcariotti24@gmail.com>2020-03-20 11:15:21 +0000
committerSanto Cariotti <dcariotti24@gmail.com>2020-03-20 11:15:21 +0000
commitd880d90e6d6d0cade731ae43ab40934928c20ba4 (patch)
tree91a70553e4ddf248095b2b89e6bfdd98f05f82d4 /src/frest/templates/form.rst
parentce12b3c0916958819d3e5cec5c3609e204b28ad8 (diff)
chore: rename templates in txt
Diffstat (limited to 'src/frest/templates/form.rst')
-rw-r--r--src/frest/templates/form.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/frest/templates/form.rst b/src/frest/templates/form.rst
deleted file mode 100644
index f4b2c14..0000000
--- a/src/frest/templates/form.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-from .models import %%NAME%%
-from src.forms import ModelForm
-
-
-class %%NAME%%Form(ModelForm):
- model = %%NAME%%
-
- def __init__(self, data):
- super().__init__(self.model)
- self.data = data