diff --git a/physionet-django/user/managers.py b/physionet-django/user/managers.py index e51a4168c..0a17c95ab 100644 --- a/physionet-django/user/managers.py +++ b/physionet-django/user/managers.py @@ -18,7 +18,7 @@ def get_review(self): def get_in_progress(self): """ - Get the on-platform training objects for the user, that are in the status REVIEW. + Get the on-platform training objects for the user, that are in the status IN-PROGRESS. """ return self.filter( Q(status=TrainingStatus.IN_PROGRESS), diff --git a/physionet-django/user/views.py b/physionet-django/user/views.py index 37900f6b9..77d5d77a4 100644 --- a/physionet-django/user/views.py +++ b/physionet-django/user/views.py @@ -830,8 +830,6 @@ def edit_certification(request): "rejected": training.get_rejected(), } - print(training_by_status) - return render( request, "user/edit_certification.html",