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

Step 3: Connect Data Sources

{% if not google_connected %}
Google Account Not Connected

You need to connect your Google account to access Google Analytics and Search Console data.

Connect Google Account
{% endif %}
{% if google_connected and not ga4_properties %}
No GA4 properties found. Make sure you have access to Google Analytics properties.
{% elif not google_connected %}
Connect your Google account to see available properties.
{% endif %}
{% if google_connected and not gsc_sites %}
No Search Console sites found. Make sure you have access to Search Console properties.
{% elif not google_connected %}
Connect your Google account to see available sites.
{% endif %}
{% if google_connected %}
{{ ga4_properties|length if ga4_properties else 0 }} GA4 Properties
{{ gsc_sites|length if gsc_sites else 0 }} GSC Sites
{% endif %}
Back
{% endblock %}