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

{{ strategy.name }}

Strategy Overview & Performance

Active
Hypothesis

{{ strategy.hypothesis or 'No hypothesis defined' }}

{% if case_study %}
Period Configuration
Benchmark {{ case_study.benchmark_start_date }} {{ case_study.benchmark_end_date }}
Post-Launch {{ case_study.post_start_date }} {{ case_study.post_end_date }}
Integrations
GA4: {{ case_study.ga4_property_id or 'Not configured' }}
GSC: {{ case_study.gsc_site_url or 'Not configured' }}
{% endif %}
Details
Owners

{{ strategy.owners or 'Not assigned' }}

Tags

{% if strategy.tags %} {% for tag in strategy.tags.split(',') %} {{ tag.strip() }} {% endfor %} {% else %} No tags {% endif %}

Created

{{ strategy.created_at.strftime('%Y-%m-%d %H:%M') if strategy.created_at else 'Unknown' }}

Implementation Notes

{{ strategy.implementation_notes or 'No implementation notes yet. Click Edit to add notes.' }}

Performance Data

Data visualization will appear here once the background job completes.

{% if activity_logs %} {% for log in activity_logs %}
{{ log.action|upper }}

{{ log.details }}

{{ log.user_email }}
{{ log.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endfor %} {% else %}
No activity recorded yet.
{% endif %}
{% endblock %}