From a9ee71fffc96296903c6b7eb6d0d3896b56d833a Mon Sep 17 00:00:00 2001 From: John Jarvis Date: Tue, 29 Jan 2013 11:26:55 -0500 Subject: [PATCH] Adding section on eligibility --- lms/djangoapps/certificates/models.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lms/djangoapps/certificates/models.py b/lms/djangoapps/certificates/models.py index 334200d348..0e68e3cfe7 100644 --- a/lms/djangoapps/certificates/models.py +++ b/lms/djangoapps/certificates/models.py @@ -35,6 +35,19 @@ State diagram: v v v [downloadable] [downloadable] [deleted] + +Eligibility: + + Students are eligible for a certificate if they pass the course + with the following exceptions: + + If the student has allow_certificate set to False in the student profile + he will never be issued a certificate. + + If the user and course is present in the certificate whitelist table + then the student will be issued a certificate regardless of his grade, + unless he has allow_certificate set to False. + """