{% extends "index.html" %} {% block content %}
Item Status Action
Google Sheets credentials {% if google_creds_status %} {% else %} {% endif %} {{ 'Reauthorize' if google_creds_status else 'Authorize' }}
Plaid credentials {% if plaid_creds_status %} {% else %} {% endif %} Edit
Spreadsheet {% if google_creds_status and spreadsheet_exists %} {% else %} {% endif %} {% if google_creds_status and plaid_creds_status %} {{ 'Manage' if spreadsheet_exists else 'Create new spreadsheet' }} {% else %} Authorize Google and Plaid credentials first. {% endif %}
Plaid access tokens {% if plaid_creds_status and plaid_access_tokens_status == True %} {% elif plaid_creds_status and plaid_access_tokens_status == False %} {% else %} {% endif %} {% if plaid_creds_status %} Manage {% else %} Authorize Plaid credentials first. {% endif %}


{% if google_creds_status and plaid_creds_status and google_creds_status and spreadsheet_exists and plaid_access_tokens_status %}
{% if not user_allowed_sync %}

You may not sync more than once every 12 hours.

{% endif %}
{% endif %} {% if spreadsheet_url %} {% endif %} {% endblock %}