{% extends "base.html" %} {% block title %}Today — {{ company.config.name or company.slug }}{% endblock %} {% block content %}

{{ greeting }}.

{% if active_project %}Here's what's in {{ active_project.slug }}. {% else %}Here's what's in the {{ company.config.name or company.slug }} brain.{% endif %}

{{ stats.decisions }}
Decisions
{{ stats.sources }}
Sources
{{ stats.context_entries }}
Context entries
{% if not stats.decisions and not stats.sources and not stats.context_entries %}

Nothing in the brain yet{% if active_project %} for {{ active_project.slug }}{% endif %}. Use + Add to Brain to start teaching Solly.

{% else %}

Recent decisions

{% if decisions %} {% else %}

No decisions recorded yet.

{% endif %}

Recent sources

{% if sources %} {% else %}

No sources recorded yet.

{% endif %}
{% endif %}

Ask Solly

{% endblock %}