{% extends "base.html" %} {% block main %}

Welcome to Timesketch

{% if last_sketch %}

The last sketch that you worked on was {{ last_sketch.sketch.name }}.

{% endif %}
{{ form.name }} {{ form.description }} {{ form.csrf_token }}
{% if upload_enabled %} {% endif %}
{% if upload_enabled %} {% endif %}

{% if not sketches.all() %}
No sketches found
{% else %} {% for sketch in sketches.all() %} {% endfor %}
Sketch Created by Status Timelines Saved views Last activity
{{ sketch.name }} {{ sketch.user.name }} {{ sketch.get_status.status }} {{ sketch.timelines|count }} {{ sketch.get_named_views|count }} {{ sketch.updated_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %}
{% endblock %}