{% load timeline_tags %} {% load rules %} {% has_perm 'timeline.view_timeline' request.user project as can_view_timeline %} {% has_perm 'timeline.view_classified_event' request.user project as can_view_classified %} {% if can_view_timeline %} {% get_plugin_lookup as plugin_lookup %} {% include 'timeline/_list_header.html' with details_card_mode=True %} {% get_details_events project can_view_classified as events %} {% if events|length > 0 %} {% for event in events %} {% include 'timeline/_list_item.html' with event=event details_card_mode=True %} {% endfor %} {% else %} {% endif %}
No events
{% endif %}