feat: conditions for evaluation eligibility

This commit is contained in:
Jannat Patel
2022-04-27 17:20:30 +05:30
parent 1e3c20d118
commit 3585645580
5 changed files with 41 additions and 28 deletions

View File

@@ -204,10 +204,12 @@
<a class="button wide-button is-secondary mt-2" href="/courses/{{ course.name }}/{{ certificate }}">
{{ _("Get Certificate") }}
</a>
{% elif course.grant_certificate_after == "Evaluation" and not certificate_request %}
{% elif eligible_for_evaluation %}
<a class="button wide-button is-secondary mt-2" id="apply-certificate" data-course="{{ course.name }}">
{{ _("Apply for Certificate") }}
</a>
{% elif no_of_attempts < course.max_attempt %}
<p> {{ _("You have exceeded the maximum number of attempts allowed to appear for evaluations for this course.") }} </p>
{% elif progress == 100 %}
<div class="button wide-button is-secondary mt-4" id="certification" data-course="{{ course.name }}">
{{ _("Get Certificate") }}

View File

@@ -1,6 +1,6 @@
import frappe
from lms.lms.doctype.lms_settings.lms_settings import check_profile_restriction
from lms.lms.utils import get_membership, is_instructor, is_certified
from lms.lms.utils import get_membership, is_instructor, is_certified, eligible_for_certificate_evaluation
from frappe.utils import add_months, getdate
def get_context(context):
@@ -35,20 +35,9 @@ def get_context(context):
context.restriction = check_profile_restriction()
context.show_start_learing_cta = show_start_learing_cta(course, membership, context.restriction)
context.certificate = is_certified(course.name)
context.certificate_request = frappe.db.get_value("LMS Certificate Request", {
"course": course.name,
"member": frappe.session.user,
"date": [">=", getdate()]
}, ["date", "start_time", "end_time"],
as_dict=True)
context.eligible_for_evaluation = eligible_for_certificate_evaluation()
context.certificate_request =
context.no_of_attempts = frappe.db.count("LMS Certificate Evaluation", {
"course": course.name,
"member": frappe.session.user,
"status": ["!=", "Pass"],
"creation": [">=", add_months(getdate(), -2)]
})
print(context.certificate_request)
if context.course.upcoming:
context.is_user_interested = get_user_interest(context.course.name)