{% load static %} {% load media %} {{ profile.full_name }}
PDF DOCX

Привет, я {{ profile.full_name }}

{% if profile.role %}

{{ profile.role }} • {{ profile.location }}

{% endif %}

{{ profile.summary }}

Опыт работы

{% for job in profile.experience.all %}
{{ job.company }}
{% with sd=job.start_date ed=job.end_date %} {% if sd %}{{ sd|date:"F Y" }}{% endif %}{% if ed %} — {{ ed|date:"F Y" }}{% else %} — настоящее время {% endif %} {% endwith %}
{% if job.summary %}
{{ job.summary }}
{% endif %} {% if job.achievements %}
    {% for a in job.achievements %}
  • {{ a }}
  • {% endfor %}
{% endif %}
{% empty %}
Нет записей об опыте.
{% endfor %}