Skip to content
Snippets Groups Projects
Commit f4f46bde authored by Todd Dembrey's avatar Todd Dembrey
Browse files

fixup! Make review forms behave the same way as application forms

parent d83d3dad
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,6 @@ from ..admin_forms import WorkflowFormAdminForm ...@@ -21,7 +21,6 @@ from ..admin_forms import WorkflowFormAdminForm
from ..edit_handlers import ReadOnlyPanel, ReadOnlyInlinePanel from ..edit_handlers import ReadOnlyPanel, ReadOnlyInlinePanel
from .submissions import ApplicationSubmission from .submissions import ApplicationSubmission
from .forms import RoundBaseForm
from .utils import admin_url, EmailForm, SubmittableStreamForm, WorkflowStreamForm, LIMIT_TO_REVIEWERS, LIMIT_TO_STAFF from .utils import admin_url, EmailForm, SubmittableStreamForm, WorkflowStreamForm, LIMIT_TO_REVIEWERS, LIMIT_TO_STAFF
...@@ -174,7 +173,6 @@ class RoundBase(WorkflowStreamForm, SubmittableStreamForm): # type: ignore ...@@ -174,7 +173,6 @@ class RoundBase(WorkflowStreamForm, SubmittableStreamForm): # type: ignore
new_form.save() new_form.save()
new_class.objects.create(round=self, form=new_form) new_class.objects.create(round=self, form=new_form)
def get_submit_meta_data(self, **kwargs): def get_submit_meta_data(self, **kwargs):
return super().get_submit_meta_data( return super().get_submit_meta_data(
page=self.get_parent(), page=self.get_parent(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment