Commit c9c4a9fb83b1525b0d625c07ca5734b1a8ff997e
1 parent
03566d4b
Exists in
master
and in
5 other branches
change branch #211
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
app/views.py
@@ -55,8 +55,11 @@ class AmadeusSettings(LoginRequiredMixin, HasRoleMixin, View): | @@ -55,8 +55,11 @@ class AmadeusSettings(LoginRequiredMixin, HasRoleMixin, View): | ||
55 | form_class = EmailBackendForm | 55 | form_class = EmailBackendForm |
56 | success_url = reverse_lazy('app:settings') | 56 | success_url = reverse_lazy('app:settings') |
57 | 57 | ||
58 | + def get_object(self): | ||
59 | + pass | ||
60 | + | ||
58 | def get(self, request): | 61 | def get(self, request): |
59 | - return render(request, self.template_name, ) | 62 | + return render(request, self.template_name) |
60 | 63 | ||
61 | 64 | ||
62 | 65 |