{% extends 'body_base.html' %} {% block title %}Minne - Scratchpad{% endblock %} {% block main %}
{% block header %}

Scratchpads

{% endblock %} {% block 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 %} {% 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 %}
{% if new_scratchpad %}
{% endif %} {% endblock %}