summaryrefslogtreecommitdiffstats
path: root/src/frest/templates/form.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/frest/templates/form.txt')
-rw-r--r--src/frest/templates/form.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/frest/templates/form.txt b/src/frest/templates/form.txt
deleted file mode 100644
index ed1017e..0000000
--- a/src/frest/templates/form.txt
+++ /dev/null
@@ -1,11 +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
- self.ignore = []