aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/views.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-04-19 20:42:01 +0100
committerMatthew Lemon <matt@matthewlemon.com>2020-04-19 20:42:01 +0100
commit899fc0668b8137b41851739a4e1c9e43733985af (patch)
tree1ad6b1a594fb48b82e20d03580ab8d72239f0279 /ctrack/caf/views.py
parent6489d10f65e1d2b6ff50714caec6564ccf632a6f (diff)
clean up
Diffstat (limited to 'ctrack/caf/views.py')
-rw-r--r--ctrack/caf/views.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/ctrack/caf/views.py b/ctrack/caf/views.py
index 07fd1b1..5dcf7ee 100644
--- a/ctrack/caf/views.py
+++ b/ctrack/caf/views.py
@@ -71,12 +71,3 @@ class ApplicableSystemCreateFromOrg(LoginRequiredMixin, CreateView):
def get_success_url(self):
return reverse_lazy("organisations:detail", args=[self.kwargs['slug']])
-
-
-class ApplicableSystemCreate(LoginRequiredMixin, CreateView):
- form_class = ApplicableSystemCreateForm
- model = ApplicableSystem
- template_name = "caf/applicablesystem_create.html"
-
- def get_success_url(self) -> str:
- return str(reverse_lazy("caf:ass_detail", args=[self.object.id]))