{% extends "base.html" %} {% block main %}
{% if sketch.timelines %}
{% for timeline in sketch.timelines %} {% endfor %}
Timeline Added by Added Edit
{% if timeline.searchindex.get_status.status == 'processing' %} {% else %}
{% endif %}
{% if timeline.searchindex.get_status.status == 'processing' %} {{ timeline.name }} {% else %} {{ timeline.name }} {% endif %}
{{ timeline.user.name }}
{{ timeline.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if sketch.has_permission(user=current_user, permission='write') %} {% endif %}
{% 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' %} {% endif %} {% endfor %}
Timeline Created
{{ timeline.name }} {{ timeline.created_at.strftime('%Y-%m-%d') }}
{{ 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 %}