{% extends 'sections/section.html' %} {% block content %} {{ super() }} {% for item in data.list|sort_and_group(date_field='end', group_field='organization') %} {% if item.tasks %} {% endif %} {% if item.highlights %} {% endif %} {% endfor %}
{{ item.organization }}
{{ item.start|reformat('%Y') }} - {{ item.end|reformat('%Y') }}: {{ item.position }} ({{ item.division }})
Tasks:
    {% for task in item.tasks %}
  • {{ task }}
  • {% endfor %}
Highlights:
    {% for highlight in item.highlights %}
  • {{ highlight }}
  • {% endfor %}
{% endblock %}