{% load static %} {% for data in data_subsection %} {% if data.separator_before %}
{% endif %}
{% if data.display_category == 'Name' %}

{{ content.name }}

{% elif data.display_category == 'Profession' %}
{% if content.profession2 %}

{{ content.profession1 }}

{{ content.profession2 }}

{% else %}

{{ content.profession1 }}

{% endif %}
{% elif data.display_category == 'Contact' %} {% include 'resume_manager/include/contact.html' with data=content.contact description=data.description %} {% elif data.display_category == 'Education' %} {% include 'resume_manager/include/education.html' with data=content.education description=data.description %} {% elif data.display_category == 'Experience' %} {% include 'resume_manager/include/experience.html' with data=content.experience description=data.description %} {% elif data.display_category == 'Skills' %} {% include 'resume_manager/include/skills.html' with data=content.skills description=data.description %} {% elif data.display_category == 'References' %} {% include 'resume_manager/include/references.html' with data=content.references description=data.description %} {% endif %} {% include 'resume_manager/_display_recurse.html' with data_subsection=data.section_children name=name profession=profession %}
{% if data.separator_after %}
{% endif %} {% endfor %}