{% extends "base.html" %} {% block main %}
{% if sketch.timelines %}

Timelines in this sketch


{% for timeline in sketch.timelines %} {% endfor %}
Timeline Added by Added
{{ timeline.user.name }}
{{ timeline.created_at.strftime('%Y-%m-%d %H:%M') }}
Start exploring
{% else %}

No timelines added to this sketch.

{% endif %} {% if sketch.has_permission(current_user, 'write') %}
{% if timelines %}

{% for timeline in timelines %} {% if timeline.get_status.status == 'new' %} {% if not timeline.user %} {% else %} {% endif %} {% endif %} {% endfor %}
Timeline Created by Created
{{ timeline.name }}System{{ timeline.user }}{{ timeline.created_at.strftime('%Y-%m-%d %H:%M') }}
{{ form.csrf_token }}
{% else %}

There are no more available timelines to add

See the documentation on how to add more timelines to the system.

{% endif %}
{% endif %}
{% endblock %}