{% extends "base.html" %} {% block title %}Pengalaman — {{ profile.full_name }}{% endblock %} {% block content %} {% include "partials/page_header.html" with eyebrow="Perjalanan Karier" heading="Pengalaman & Riwayat" subheading="Rekam jejak profesional, pendidikan, dan sertifikasi yang saya kumpulkan sepanjang perjalanan." %}

Pengalaman Kerja

{% if experiences %}
{% for exp in experiences %}
{% if exp.logo %} {{ exp.company }} {% else %} {{ exp.company|slice:":1"|upper }} {% endif %}

{{ exp.position }}

{% if exp.is_current %} Aktif {% endif %}

{% if exp.company_url %} {{ exp.company }} {% else %}{{ exp.company }}{% endif %} · {{ exp.get_employment_type_display }}

{{ exp.period }} · {{ exp.duration }} {% if exp.location %}
{{ exp.location }} · {{ exp.get_location_type_display }}{% endif %}

{% if exp.bullets %}
    {% for b in exp.bullets %}
  • {{ b }}
  • {% endfor %}
{% endif %} {% if exp.skills.all %}
{% for s in exp.skills.all %}{{ s.name }}{% endfor %}
{% endif %}
{% endfor %}
{% else %}

Belum ada data pengalaman kerja.

{% endif %} {% if educations %}

Pendidikan

{% for e in educations %}
{% if e.logo %} {{ e.school }} {% else %} {{ e.school|slice:":1"|upper }} {% endif %}

{{ e.school }}

{{ e.degree }}{% if e.field_of_study %} — {{ e.field_of_study }}{% endif %}

{{ e.period }}{% if e.grade %} · Nilai: {{ e.grade }}{% endif %}

{% if e.description %}

{{ e.description }}

{% endif %}
{% endfor %}
{% endif %} {% if certificates %}

Sertifikat & Penghargaan

{% for c in certificates %}
{% if c.logo %} {{ c.issuer }} {% else %} {% endif %}

{{ c.name }}

{{ c.issuer }}

{{ c.issue_date|date:"M Y" }} {% if c.expire_date %} — {{ c.expire_date|date:"M Y" }}{% if c.is_expired %} (kedaluwarsa){% endif %}{% endif %}

{% if c.credential_id %}

ID: {{ c.credential_id }}

{% endif %}
{% if c.credential_url %}Verifikasi →{% endif %} {% if c.file %}Lihat file →{% endif %}
{% endfor %}
{% endif %}
{% if profile.cv_file %} Unduh CV Lengkap {% else %} Ajak Saya Bekerja Sama {% endif %}
{% endblock %}