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

Whiteboard source

Renders a Nextcloud Whiteboard (or any Excalidraw scene) fetched over WebDAV -- credentials set up in Settings.

{% if whiteboard_source %}

Currently showing {{ whiteboard_source.url }} using {{ whiteboard_source.display_name }}'s WebDAV account.

{% else %}

No whiteboard configured yet.

{% endif %} {% if viewer_has_webdav_creds %}

The direct WebDAV URL to the specific file -- in Nextcloud's Files app, this is the file's path under remote.php/dav/files/<your-username>/.

{% else %}

Set up WebDAV credentials in Settings first to point this frame at one of your own files.

{% endif %}

Preview

How this frame's whiteboard currently renders.

Whiteboard preview
{% endblock %} {% block scripts %} {% endblock %}