{% extends "base.html" %} {% block title %}{{ _('nav.dashboard') }}{% endblock %} {% block content %}

{{ _('nav.dashboard') }}

{{ _('dash.subtitle') }}

{{ _('dash.plan') }}
{{ plan.display_name if plan else 'Free' }}
{{ _('dash.usage') }}
{{ current_user.reports_this_month }} / {{ '∞' if plan and plan.reports_per_month == -1 else (plan.reports_per_month if plan else 2) }}
{{ _('dash.total_reports') }}
{{ total_reports }}
{{ _('dash.avg_viability') }}
{{ avg_score }}%
{{ _('dash.investors') }}
{{ investors_count }}
{{ _('dash.notifications') }}
{{ unread_notifs }}
{% if total_reports > 0 %}

{{ _('dash.verdict_dist') }}

{% if total_reports > 0 %}
{% endif %}
Go {{ go_count }}
Caution {{ caution_count }}
No-Go {{ nogo_count }}

{{ _('dash.quick_tools') }}

{% set tools = [ (url_for('investor_crm.index'), _('dash.investors_link'), '💼'), (url_for('grants.index'), _('dash.grants_link'), '🏦'), (url_for('cofounders.index'), _('dash.cofounder'), '🤝'), (url_for('campaigns.dashboard'), _('dash.campaigns_link'), '📢'), (url_for('marketplace.index'), _('dash.market_link'), '🛒'), (url_for('templates.index'), _('dash.templates_link'), '📄') ] %} {% for link, label, icon in tools %} {{ icon }} {{ label }} {% endfor %}
{% endif %}
{% if search or lang_filter %} {{ _('dash.clear_filters') }} {% endif %}

{{ _('dash.analysis_log') }}

{{ pagination.total }} {{ _('dash.reports') }}
{% if reports %} {% if pagination.pages > 1 %}
{% if pagination.has_prev %} {% endif %}
{% for p in pagination.iter_pages(left_edge=1, right_edge=1, left_current=2, right_current=2) %} {% if p %} {{ p }} {% else %} ... {% endif %} {% endfor %}
{% if pagination.has_next %} {% endif %}
{% endif %} {% else %}
📂
{% if search %}

{{ _('dash.no_results') }}

'{{ search }}'

{{ _('dash.clear_search') }} {% else %}

{{ _('dash.empty_portfolio') }}

{{ _('dash.start_first_study') }}

{{ _('nav.new_study') }}   → {% endif %}
{% endif %}
{% endblock %}