{% extends "base.html" %} {% block title %}Knowledge - {{ app_name }}{% endblock %} {% block page_title %}Knowledge Base{% endblock %} {% block content %}
Total Nodes {{ stats.total_nodes }}
Total Edges {{ stats.total_edges }}
Categories {{ stats.categories|length }}
Growth Rate {{ "%.1f"|format(stats.growth_rate) }}x

Knowledge Categories

{% if stats.categories %}
{% for category, count in stats.categories.items() %}
{{ category }} {{ count }} items
{% endfor %}
{% else %}

No categories found. Knowledge base is being populated.

{% endif %}

Knowledge Graph

Interactive knowledge graph visualization

{{ stats.total_nodes }} nodes, {{ stats.total_edges }} connections

Recent Updates

{% if stats.last_updated %}

Last updated: {{ stats.last_updated }}

{% else %}

No recent updates recorded.

{% endif %}
{% endblock %}