{% extends "app_base.html" %} {% block title %}{{ frame.name or "Frame" }} ยท Whiteboard{% endblock %} {% block page_title %}{% include "_frame_name_edit.html" %}{% endblock %} {% block device_status %}{% include "_device_status_bar.html" %}{% endblock %} {% block tabs %}{% include "_frame_tabs.html" %}{% endblock %} {% block content %} {% if not has_whiteboard_widget %}
This frame doesn't have a Whiteboard widget on screen yet -- settings below won't show up anywhere until one is added.
{% 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 %}