{% extends "dashboard_base.html" %} {% block title %}Calendar Sources — calrs{% endblock %} {% block dashboard_content %}

Calendar 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 %} · Last sync: {{ s.last_synced }}
Edit
{% if s.calendars %}
{% if not s.write_calendar_href %}
⚠ No write calendar selected. Confirmed bookings stay in calrs and are not pushed to this calendar. Pick one below to enable write-back.
{% endif %}
{% endif %}
{% endfor %} {% else %}

No calendar sources connected. Add one to check availability.

{% endif %}
{% endblock %}