{% extends "base.html" %} {% block navigation %} {% endblock %} {% block right_nav %} {% endblock %} {% block main %} {% if sketch.has_permission(current_user, 'write') and upload_enabled %}

Import timeline

You can upload either a Plaso storage file or a CSV file.
Supported Plaso version: {{ plaso_version }}


If you are uploading a CSV file make sure to read the documentation to learn what columns are mandatory.

{% endif %}
{% if sketch.timelines %}

Timelines

{% endif %} {% if sketch.has_permission(user=current_user, permission='write') and not sketch.timelines and not timelines%}

No timelines in the system yet

Get started by importing a Plaso storage file

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

Available 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 }}
{% endif %} {% endif %}
{% endblock %}