pedagogy: simplify and implement department system according to old database model

This commit is contained in:
2019-06-18 10:56:05 +02:00
parent d44fa73b2a
commit 358a625cc4
8 changed files with 35 additions and 94 deletions

View File

@ -217,35 +217,3 @@ class UVUpdateView(CanEditPropMixin, UpdateView):
def get_success_url(self):
return reverse_lazy("pedagogy:uv_detail", kwargs={"uv_id": self.object.id})
class EducationDepartmentCreateView(CreateView):
"""
Add a new Education Department (Privileged)
"""
pass
class EducationDepartmentDeleteView(DeleteView):
"""
Allow to delete an Education Department (Privileged)
"""
pass
class StudyFieldCreateView(CreateView):
"""
Add a new Study Field (Privileged)
"""
pass
class StudyFieldDeleteView(DeleteView):
"""
Allow to delete an Study Field (Privileged)
"""
pass