{% extends "base.html" %} {% block title %}Your Certificate — Python 108{% endblock %} {% block content %}
{% if is_complete %}
🏆

Congratulations, {{ user['username'] }}!

You have completed all 108 programs of the Python 108 curriculum.
Your certificate is ready to download.

{% if completion_date %}

Completed on {{ completion_date }}

{% endif %} 🎓 Download PDF Certificate Back to Dashboard
🐍
PYTHON 108
Complete Python Programming Curriculum
CERTIFICATE OF COMPLETION
This is to certify that
{{ user['username'] }}
has successfully completed
Python 108 — Complete Python Programming Course
comprising 108 programs, 108 exercises, 12 module quizzes
{% if completion_date %}
Completed on {{ completion_date }}
{% endif %}
{% for val, lbl in [('108','Programs'),('108','Exercises'),('12','Modules'),('120','Questions')] %}
{{ val }}
{{ lbl }}
{% endfor %}

Preview only — download the PDF above for the full printable certificate.

{% else %}
📚

Almost there!

Complete all 108 programs to unlock your certificate.
You've done {{ stats.programs_done }} of 108 — only {{ 108 - stats.programs_done }} to go!

{{ (stats.programs_done/108*100)|round|int }}% complete
Continue learning →
{% endif %}
{% endblock %}