Education

{% for education in data %}

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

{% if education.degree or education.gpa or education.expected_graduation_date %}

{% if education.degree %} Degree: {{ education.degree }} {% endif %} {% if education.gpa %} GPA: {{ education.gpa }} {% endif %} {% if education.expected_graduation_date %} Graduation Date: {{ education.expected_graduation_date|date:"M Y" }} {% endif %}

{% endif %}
{% endfor %}