{% 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 title=data.section_title description=data.description %} {% elif data.display_category == 'Education' %} {% if data.minimalistic %} {% include 'resume_manager/include/education_min.html' with data=content.education title=data.section_title description=data.description %} {% else %} {% include 'resume_manager/include/education.html' with data=content.education title=data.section_title description=data.description %} {% endif %} {% elif data.display_category == 'Experience' %} {% if data.minimalistic %} {% include 'resume_manager/include/experience_min.html' with data=content.experience title=data.section_title description=data.description %} {% else %} {% include 'resume_manager/include/experience.html' with data=content.experience title=data.section_title description=data.description %} {% endif %} {% elif data.display_category == 'Skills' %} {% if data.minimalistic %} {% include 'resume_manager/include/skills_min.html' with data=content.skills title=data.section_title description=data.description %} {% else %} {% include 'resume_manager/include/skills.html' with data=content.skills title=data.section_title description=data.description %} {% endif %} {% elif data.display_category == 'References' %} {% if data.minimalistic %} {% include 'resume_manager/include/references_min.html' with data=content.references title=data.section_title description=data.description %} {% else %} {% include 'resume_manager/include/references.html' with data=content.references title=data.section_title description=data.description %} {% endif %} {% elif data.display_category == 'Pillars' %} {% include 'resume_manager/include/pillars.html' with data=content.pillars title=data.section_title 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 %}