{% if not config.THEME_FONT_URL %} {% endif %} {% include '_theme.html' %}
Activity Center DEMO
{% if session.user.picture %} Profile {% endif %} {{ session.user.email }}
{{ activity.executive_summary.active_today }}
Active Today
{{ activity.executive_summary.business_processes_identified }}
Business Processes
{{ activity.executive_summary.decisions_supported_this_week }}/wk
Decisions Supported
{{ activity.executive_summary.avg_success_rate }}%
Success Rate
{{ activity.executive_summary.adoption_trend }}
Adoption Trend
{{ activity.executive_summary.active_this_week }} analysts across {{ activity.executive_summary.teams_active }} teams powering {{ activity.executive_summary.business_processes_identified }} business processes with data-driven decisions
{% set score = activity.maturity_roadmap.summary.overall_score %} {% set circumference = 2 * 3.14159 * 48 %} {% set dash_offset = circumference * (1 - score / 100) %} {% if score >= 80 %}{% set ring_class = "level-optimized" %} {% elif score >= 60 %}{% set ring_class = "level-mature" %} {% else %}{% set ring_class = "level-developing" %}{% endif %}
{{ score }}
Maturity
{{ activity.maturity_roadmap.summary.optimized_count }}
Optimized
{{ activity.maturity_roadmap.summary.mature_count }}
Mature
{{ activity.maturity_roadmap.summary.developing_count }}
Developing
{{ activity.maturity_roadmap.summary.total_potential_value }}
Estimated annual value

Maturity Roadmap

Developing
{% for cat in activity.maturity_roadmap.categories %} {% if cat.current_level == 'developing' %}
{{ cat.name }}
{{ cat.score }}/100
{% endif %} {% endfor %}
Mature
{% for cat in activity.maturity_roadmap.categories %} {% if cat.current_level == 'mature' %}
{{ cat.name }}
{{ cat.score }}/100
{% endif %} {% endfor %}
Optimized
{% for cat in activity.maturity_roadmap.categories %} {% if cat.current_level == 'optimized' %}
{{ cat.name }}
{{ cat.score }}/100
{% endif %} {% endfor %}

Category Details

{% for cat in activity.maturity_roadmap.categories %}
{{ cat.current_level }} {{ cat.name }} {{ cat.score }}/100 {{ cat.process_count }} processes

Current Processes

    {% for proc in cat.processes %}
  • {{ proc.name }} {{ proc.status }}
  • {% endfor %}
{% if cat.advancement %}

Actions to reach {{ cat.advancement.target_level|capitalize }}

    {% for action in cat.advancement.actions %}
  • {{ action }}
  • {% endfor %}
Effort: {{ cat.advancement.effort|capitalize }}
{% if cat.advancement.blockers %}
{{ cat.advancement.blockers }}
{% endif %}
Implementation Timeline
Traditional
{{ cat.advancement.timeline }}
With AI Data Analyst
{{ cat.advancement.ai_timeline }} Fast
AI Data Platform: {{ cat.advancement.ai_description }}
{% endif %}

Business Value

{{ cat.business_value }}

{% endfor %}

Business Process Intelligence

Mapping data queries to active business processes across the organization

{% set ns = namespace(cat_processes={}) %} {% for process in activity.business_processes %} {% if process.category not in ns.cat_processes %} {% set _ = ns.cat_processes.update({process.category: []}) %} {% endif %} {% set _ = ns.cat_processes[process.category].append(process) %} {% endfor %} {% for category, processes in ns.cat_processes.items() %} {% set cat_idx = loop.index %}
{{ category }} {{ processes | length }}
{% for process in processes %}
{{ process.name }} {{ process.status }} {{ process.queries_this_week }} queries/wk {{ process.teams_involved | join(', ') }}
{% if process.description %}
Description
{{ process.description }}
{% endif %} {% if process.sample_queries %}
Sample Queries
{% for query in process.sample_queries %} {{ query }} {% endfor %}
{% endif %} {% if process.data_sources %}
Data Sources
{% for source in process.data_sources %} {{ source }} {% endfor %}
{% endif %} {% if process.impact %}
Impact
{{ process.impact }}
{% endif %}
{% endfor %}
{% endfor %}

Team Maturity

{% set optimized_count = activity.teams | selectattr('maturity', 'equalto', 'optimized') | list | length %} {% set mature_count = activity.teams | selectattr('maturity', 'equalto', 'mature') | list | length %} {% set developing_count = activity.teams | selectattr('maturity', 'equalto', 'developing') | list | length %} {% set early_count = activity.teams | selectattr('maturity', 'equalto', 'early') | list | length %} {% set total_teams = activity.teams | length %}
{% if optimized_count > 0 %}
{% endif %} {% if mature_count > 0 %}
{% endif %} {% if developing_count > 0 %}
{% endif %} {% if early_count > 0 %}
{% endif %}
Optimized ({{ optimized_count }}) Mature ({{ mature_count }}) Developing ({{ developing_count }}) Early ({{ early_count }})
{% for team in activity.teams | sort(attribute='maturity_score', reverse=True) %}
{{ team.name }}
{{ team.maturity_score }} {% if team.trend == 'up' %}▲{% elif team.trend == 'down' %}▼{% else %}—{% endif %}
{% endfor %}

Team Details

{% for team in activity.teams | sort(attribute='maturity_score', reverse=True) %}
{{ team.name }} {{ team.maturity }} {{ team.members | length }} members {{ team.active_count }} active {{ team.success_rate }}% success {{ team.highlight }}
{% for member in team.members %}
{{ member.name }}
{{ member.role }}
Last active: {{ member.last_active }} {{ member.queries_today }} queries today
{% if member.recent_queries %}
{% for query in member.recent_queries %}
{{ query.process }} {{ query.text }} {{ query.timestamp }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}

Live Activity

{% for item in activity.activity_feed %}
{{ item.person_name[:2] | upper }}
{{ item.person_name }} {{ item.team }}
{{ item.process_name }}
{{ item.query_text }}
{{ item.timestamp }}
{% endfor %}

Unmet Data Needs

Strategic opportunities where additional data would unlock new capabilities. Click any card to see integration details.

{% for opp in activity.data_opportunities %}
{{ opp.priority }} {{ opp.title }}
Requested by: {% for team in opp.requested_by %} {{ team }} {% endfor %}
{% if opp.potential_processes %}
Related: {{ opp.potential_processes | join(', ') }}
{% endif %}
{{ opp.business_case }}
{% if opp.mermaid %}
Data Integration Map
{{ opp.mermaid }}
Existing table New data source
{% endif %}
{% if opp.integration_description %}
Integration Path
{{ opp.integration_description }}
{% endif %} {% if opp.join_keys %}
Join Keys
{% for jk in opp.join_keys %} {% endfor %}
New Table Column Existing Table
{{ jk.new_table }} . {{ jk.column }} {{ jk.existing_table }}
{% endif %}
{% if opp.beneficiaries %}
Team Impact
{% for ben in opp.beneficiaries %}
{{ ben.team }} {{ ben.impact }}
{% endfor %}
{% endif %} {% if opp.enabled_queries %}
Enabled Queries
{% for q in opp.enabled_queries %}
{{ q }}
{% endfor %}
{% endif %}
{% endfor %}