{% if title %}

{{ title }}

{# Hides title element entirely if value is empty str #} {% elif title is None %}

Experience

{% endif %} {% if description %}

{{ description }}

{% endif %}
{% for experience in data %}

{{ experience.name }}   -   {{ experience.position }} {{ experience.date_start|date:"M Y" }} - {% if experience.date_end %} {{ experience.date_end|date:"M Y" }} {% else %} Present {% endif %}

{% if experience.description %}

{{ experience.description }}

{% endif %}
{% empty %}

No experience yet.

{% endfor %}