{% extends "base.html" %} {% block content %}

Dashboard

Welcome back, {{ current_user.company_name or 'User' }}

New Strategy

Active Strategies

{{ stats.active_strategies }}

Reports Generated

{{ stats.total_reports }}

Data Points

{{ stats.data_points }}

Recent Strategies

{% for strategy in strategies %} {% else %} {% endfor %}
Strategy Name Status Created Owners Actions
{{ strategy.name }} Active {{ strategy.created_at.strftime('%Y-%m-%d') }} {{ strategy.owners or '-' }} View
No strategies found. Click "New Strategy" to get started.
{% for strategy in strategies %} {% endfor %} {% endblock %}