{% extends "settings.html" %} {% block settings %} {% load i18n %} {% if form.errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% csrf_token %} {{form.as_p}}
{% if show and form.instance.auth_method == 'oauth' and form.instance.oauth_client_id and form.instance.oauth_client_secret and not form.instance.oauth_refresh_token %}
OAuth Authorization Required

Your OAuth credentials are configured, but you need to authorize access to your Google Drive.

Authorize with Google
{% elif show and form.instance.auth_method == 'oauth' and form.instance.oauth_refresh_token %}
OAuth Authorized

Google Drive access is authorized and ready for backup.

{% endif %} {% endblock settings %}