{% extends 'scratchpad/_layout.html' %} {% block scratchpad_header %}

Scratchpads

{% endblock %} {% block scratchpad_content %}
{% for scratchpad in scratchpads %}

{{ scratchpad.title }}

{{ scratchpad.content[:100] }}{% if scratchpad.content|length > 100 %}...{% endif %}
Last saved: {{ scratchpad.last_saved_at | datetimeformat(format="short", tz=user.timezone) }}
{% else %}

No scratchpads yet

Create your first scratchpad to start jotting down ideas

{% endfor %}
{% endblock %} {% block scratchpad_archived %} {% if archived_scratchpads %}
Archived Scratchpads {{ archived_scratchpads|length }}
Archived scratchpads were ingested into your knowledge base. You can restore them if you want to keep editing.
{% for scratchpad in archived_scratchpads %}

{{ scratchpad.title }}

Archived {{ scratchpad.archived_at | datetimeformat(format="short", tz=user.timezone) }}
{% if scratchpad.ingested_at %}
Ingestion started {{ scratchpad.ingested_at | datetimeformat(format="short", tz=user.timezone) }}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}