diff --git a/apps/fsm/views/fsm_view.py b/apps/fsm/views/fsm_view.py index 110c22f1..215830c4 100644 --- a/apps/fsm/views/fsm_view.py +++ b/apps/fsm/views/fsm_view.py @@ -80,13 +80,15 @@ def enter_fsm(self, request, pk=None): if fsm.participant_limit > 0 and not is_mentor: if user.is_anonymous: raise PermissionDenied( - "You must be logged in to submit this form.") + "You must be logged in to enter this fsm." + ) else: count = get_players(user, fsm).filter( finished_at__isnull=False).count() if count >= fsm.participant_limit: raise PermissionDenied( - "You have exceeded the submission limit for this form.") + "You have exceeded the submission limit for this fsm." + ) if fsm.is_public: if isinstance(user, AnonymousUser):