{% 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, JSONL, or a CSV file.
Supported Plaso version: {{ plaso_version }}


If you are uploading a CSV or JSONL 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 and not upload_enabled %}

No timelines in the system yet

Uploads are disabled. See the documentation on how to enable the upload feature and get started.

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

Available timelines



{% for timeline in timelines %} {% if timeline.get_status.status == 'ready' or timeline.get_status.status == 'new' %} {% endif %} {% endfor %}
Timeline Created
{{ timeline.name }} {{ timeline.created_at.strftime('%Y-%m-%d') }}
{{ form.csrf_token }}
{% endif %} {% endif %} {% endblock %}