{% extends "dashboard_base.html" %} {% block title %}{{ t("sources-page-title") }} — calrs{% endblock %} {% block dashboard_content %}

{{ t("sources-heading") }}

+ {{ t("sources-add") }}
{% if sources %} {% for s in sources %}
{{ s.name }} {% if s.provider_label %} {{ s.provider_label }} {% endif %}
{{ s.url }}
{% if s.auth_type == "oauth2" %}OAuth2 {{ s.username }}{% else %}{{ s.username }}{% endif %} · {{ t("sources-last-sync") }} {{ s.last_synced }}
{% if s.auth_type == "oauth2" %} {{ t("sources-reconnect") }} {% else %} {{ t("sources-edit") }} {% endif %}
{% if s.calendars %}
{% if not s.write_calendar_href %}
⚠ {{ t("sources-no-write-calendar") }}
{% endif %}
{% endif %}
{% endfor %} {% else %}

{{ t("sources-empty", link='' ~ (t("sources-empty-link-label") | escape) ~ '') | safe }}

{% endif %}
{% endblock %}