Add signup form

This commit is contained in:
2026-05-12 21:10:54 +03:00
parent 6f19d10426
commit fe62575790
7 changed files with 116 additions and 2 deletions

View File

@@ -3,3 +3,9 @@ from django.apps import AppConfig
class SubmissionsConfig(AppConfig):
name = "apps.submissions"
def ready(self) -> None:
# Imports the module for its `@receiver` side-effect (registers
# `unlink_stl_file_on_delete` with the `post_delete` signal).
# See `apps/submissions/signals.py` and plan.md §7.6.
from . import signals # noqa: F401