{% macro timeline(timeline_items, timeline_event_types) %}
{% for item in timeline_items %} {% if item.type in timeline_event_types %} {% include "common/macros/timeline/" + item.type.name.lower() + ".html" %} {% endif %} {% endfor %}
{% endmacro %}