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

{{ content.name }}

{% elif data.display_category == 'Profession' %}

{{ content.profession }}

{% elif data.display_category == 'Contact' %}

CONTACT INFO HERE

{% elif data.display_category == 'Education' %}

EDUCATION HERE

{% elif data.display_category == 'Experience' %}

EXPERIENCE HERE

{% elif data.display_category == 'Skills' %}

SKILLS HERE

{% endif %} {% if data.section_header %}

{{ data.section_header }}

{% endif %} {% if data.section_key_value_pairs %} {% endif %} {% if data.section_items %} {% endif %} {% include 'resume_manager/_display_recurse.html' with data_subsection=data.section_children name=name profession=profession %}
{% if data.separator_after %}
{% endif %} {% endfor %}