Skip to content

Commit

Permalink
update: removed "Verify aat" from python certificate and internship c…
Browse files Browse the repository at this point in the history
…ertificate
  • Loading branch information
binson-b committed Jul 30, 2018
1 parent 2e0ed09 commit 8934023
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions certificate/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2560,7 +2560,7 @@ def fossee_internship16_cerificate_download(request):
uniqueness = True
else:
num += 1
qrcode = 'Verify at: http://fossee.in/certificates/verify/{0} '.format(short_key)
qrcode = 'http://fossee.in/certificates/verify/{0} '.format(short_key)
details = {'name': name, 'serial_key': short_key}
certificate = create_fossee_internship_cerificate(certificate_path, details, qrcode, type, paper,
internship_project_duration, student_edu_detail, student_institute_detail, superviser_name_detail, workshop, file_name)
Expand Down Expand Up @@ -2674,7 +2674,7 @@ def python_workshop_download(request):
file_name = file_name.replace('.', '')
try:
old_user = Certificate.objects.get(email=email, serial_no=serial_no)
qrcode = 'Verify at: http://fossee.in/certificates/verify/{0} '.format(old_user.short_key)
qrcode = 'http://fossee.in/certificates/verify/{0} '.format(old_user.short_key)
details = {'name': name, 'serial_key': old_user.short_key}
certificate = create_python_workshop_certificate(certificate_path, details,
qrcode, type, paper, workshop, file_name, college, ws_date, is_coordinator,format)
Expand All @@ -2692,7 +2692,7 @@ def python_workshop_download(request):
uniqueness = True
else:
num += 1
qrcode = 'Verify at: http://fossee.in/certificates/verify/{0} '.format(short_key)
qrcode = 'http://fossee.in/certificates/verify/{0} '.format(short_key)
details = {'name': name, 'serial_key': short_key}
certificate = create_python_workshop_certificate(certificate_path, details,
qrcode, type, paper, workshop, file_name, college, ws_date, is_coordinator,format)
Expand Down

0 comments on commit 8934023

Please sign in to comment.