diff --git a/atlas/templates/atlas/collection_history.html b/atlas/templates/atlas/collection_history.html index 91abe2a0..820ed4cc 100644 --- a/atlas/templates/atlas/collection_history.html +++ b/atlas/templates/atlas/collection_history.html @@ -7,11 +7,19 @@ diff --git a/atlas/views.py b/atlas/views.py index 34bf8554..895b5177 100755 --- a/atlas/views.py +++ b/atlas/views.py @@ -2991,7 +2991,7 @@ def collection_reset_answers_user(request, exam_id: int, user_id: int): collection.cid_users.filter(user_user_id=user_id).delete() collection.exam_user_status.filter(cid_user_exam__user_user_id=user_id).delete() - return HttpResponse("Success") + return HttpResponse(f"User [{user_id}] answers deleted") else: raise Http404("Invalid request")