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

fixup! Add Lab Type model and allow submissions against it

parent 83e90ec9
No related branches found
No related tags found
No related merge requests found
......@@ -228,12 +228,12 @@ class Round(SubmittableStreamForm):
raise Http404()
class LabType(DefinableWorkflowStreamForm, SubmittableStreamForm):
class LabType(DefinableWorkflowStreamForm, SubmittableStreamForm): # type: ignore
class Meta:
verbose_name = _("Lab")
parent_page_types = ['apply_home.ApplyHomePage']
subpage_types = []
subpage_types = [] # type: ignore
def get_submit_meta_data(self, **kwargs):
return super().get_submit_meta_data(
......
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