{% extends "app_base.html" %} {% block title %}{{ frame.name or "Frame" }} ยท Calendar{% endblock %} {% block page_title %}{% include "_frame_name_edit.html" %}{% endblock %} {% block head_actions %}{% include "_frame_mode_select.html" %}{% endblock %} {% block device_status %}{% include "_device_status_bar.html" %}{% endblock %} {% block tabs %}{% include "_frame_tabs.html" %}{% endblock %} {% block content %} {% if frame.mode != 'calendar' %}
This frame is currently in Photos mode -- settings below take effect once you switch it to Calendar mode using the selector at the top of the page.
{% endif %}

Calendar

Only affects the Week and Month views.

Uses the same album configured on the Photos tab -- nothing extra to set up.

Included calendars

Each linked person decides whether their own calendar contributes to this frame -- being linked here doesn't include it automatically.

    {% for u in calendar_users %}
  • {% if u.user_id == user.id %} {% if u.has_url %} {% else %}

    {{ u.display_name }} (you) -- no calendar set, add one in Settings.

    {% endif %} {% else %}

    {{ u.display_name }}: {% if not u.has_url %}no calendar set{% elif u.included %}included{% else %}not included{% endif %}

    {% endif %}
  • {% endfor %}
{% if frame.calendar_fetch_summary %}

Last fetch: {{ frame.calendar_fetch_summary }}

{% endif %}

Preview

How this frame's calendar currently renders.

Calendar preview
{% endblock %} {% block scripts %} {% endblock %}