{% 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 %}
Recent Activity
{% for doc in recent %} {% endfor %}
TypeTitleProjectCreated
{{ doc.type }} {{ doc.title }} {{ doc.project }} {{ doc.created_at[:10] if doc.created_at else '' }}
{% endblock %}