{% extends "core/base.html" %} {% block title %}Certifications - {{ personal_info.name }}{% endblock %} {% block content %} {% include "core/sections/page_header.html" with title="Certifications" description="Professional certifications and achievements" %}
{% for cert in certifications %}
{% if cert.image %}
{{ cert.name }}
{% endif %}

{{ cert.name }}

{{ cert.issuer }}

Earned: {{ cert.date_earned|date:"F Y" }}

{% if cert.expiry_date %}

Expires: {{ cert.expiry_date|date:"F Y" }}

{% endif %} {% if cert.credential_id %}

Credential ID: {{ cert.credential_id }}

{% endif %}
{% if cert.description %}

{{ cert.description }}

{% endif %} {% if cert.url %} Verify Certificate {% endif %}
{% empty %}

No certifications added yet.

{% endfor %}
{% endblock %}