Skip to content

Commit

Permalink
fix 404 for adding
Browse files Browse the repository at this point in the history
disattach ProposalEditMixin from AdditionalSpeaker's options.
  • Loading branch information
SivanYeh committed Apr 15, 2024
1 parent 8c7460e commit 8e9216f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/proposals/views/speakers.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class TutorialProposalManageSpeakersView(ProposalManageSpeakersView):

class AdditionalSpeakerRemoveView(
LoginRequiredMixin, UserProfileRequiredMixin,
ProposalEditMixin, FormValidMessageMixin, UpdateView):
FormValidMessageMixin, UpdateView):

http_method_names = ['post', 'options']
model = AdditionalSpeaker
Expand All @@ -89,7 +89,7 @@ def get_success_url(self):

class AdditionalSpeakerSetStatusView(
LoginRequiredMixin, UserProfileRequiredMixin,
ProposalEditMixin, FormValidMessageMixin, UpdateView):
FormValidMessageMixin, UpdateView):

http_method_names = ['post', 'options']
model = AdditionalSpeaker
Expand Down

0 comments on commit 8e9216f

Please sign in to comment.