{% extends "base.html" %} {% block title %}Dashboard - Workshop Admin{% endblock %} {% block content %}

Dashboard

{{ workspace_path }}

Database: {{ db_path }}

Total Entries
{{ stats.total }}
Notes
{{ stats.notes }}
Gotchas
{{ stats.gotchas }}
Decisions
{{ stats.decisions }}
Preferences
{{ stats.preferences }}

Recent Entries

{% for entry in entries %}
{{ entry.type }} {{ entry.timestamp|timeago }}

{{ entry.content }}

{% if entry.metadata %}

{{ entry.metadata[:100] }}{% if entry.metadata|length > 100 %}...{% endif %}

{% endif %}
{% else %}

No entries yet

{% endfor %}
{% if entries|length == 20 %} {% endif %}
{% endblock %}