{% extends "base.html" %} {% set active = "home" %} {% block title %}Cortex — Home{% endblock %} {% block content %}

Dashboard

{{ stats.sqlite_total }}
Documents
{{ stats.graph_triples }}
Triples
{{ stats.entities }}
Entities
{{ alerts|length }}
Alerts
{% if alerts %}
Active Alerts
{% for alert in alerts %}
{{ alert.type|capitalize }}: {{ alert.message }}
{% endfor %}
{% endif %}
Projects
{% if projects %}
{% for proj in projects %}
{{ proj.name }}
{% if proj.last_activity %}
Last activity: {{ proj.last_activity }}
{% endif %}
{{ proj.doc_count }} {{ 'document' if proj.doc_count == 1 else 'documents' }}
{% endfor %}
{% else %}

No projects yet. Capture knowledge with a project tag to see it here.

{% endif %}
Recent Activity
{% if recent %} {% for doc in recent %} {% endfor %}
TypeTitleProjectCreated
{{ doc.type }} {{ doc.title }} {{ doc.project }} {{ doc.created_at[:10] if doc.created_at else '' }}
{% else %}

No activity yet.

{% endif %}
{% endblock %}