{% extends "resumator/base.html" %} {% load experience_extras %} {% load staticfiles %} {% block extrastyles %}{% endblock %} {% block extrafonts %}{% endblock %} {% block title %}{{ resumator_basicinformation.name }} - Experience{% endblock %} {% block extracontent %}
Experience
{% for experience in resumator_experience %}
{% if experience.link %}{% endif %}
{{ experience }}
{% if experience.start_date and not experience.end_date%}{{ experience.start_date }} - Ongoing {% elif experience.start_date and experience.end_date%}{{ experience.start_date }} - {{ experience.end_date }} {% elif experience.end_date and not experience.start_date%}{{ experience.end_date }} {% endif %}
{% with used_languages|get_item:experience as experience_used_languages %} {% if experience_used_languages %}
{% for language in experience_used_languages %} {{ language }} {% endfor %}
{% endif %} {% endwith %}
{% spaceless %}

{{ experience.description }}

{% endspaceless %}
{% comment %}{% if experience.image %}
{% endif %}{% endcomment %} {% if experience.link %}
{% endif %}
{% endfor %} {% endblock %}