Build and push server image / build-and-push (push) Successful in 1m57s
File picker: an optional WebDAV browse root in Settings (User.webdav_base_url) plus a plain-PROPFIND directory listing (webdav_client.list_directory) power a "Browse..." panel on a frame's Whiteboard tab, so a file can be clicked into rather than typing its exact WebDAV URL. Manual URL entry still works unchanged either way. Force-refresh: get_or_refresh_whiteboard takes a force flag that skips the fetch throttle entirely; the Whiteboard tab's refresh button now passes it, so clicking it always re-fetches and re-renders instead of possibly just re-showing the same cached image from within the last ~20 minutes.
129 lines
6.4 KiB
HTML
129 lines
6.4 KiB
HTML
{% extends "app_base.html" %}
|
|
|
|
{% block title %}Settings{% endblock %}
|
|
{% block page_title %}Your account{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if saved %}<div class="status ok">Saved.</div>{% endif %}
|
|
{% if error %}<div class="status err">{{ error }}</div>{% endif %}
|
|
|
|
<section class="card">
|
|
<h2 class="card-title">Profile & photo library</h2>
|
|
<form method="post" action="/settings">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
<label>Display name
|
|
<input type="text" name="display_name" maxlength="64" value="{{ user.display_name }}">
|
|
</label>
|
|
<label>Email
|
|
<input type="email" name="email" value="{{ user.email }}" placeholder="[email protected]">
|
|
</label>
|
|
<p class="sub" style="margin-top: 8px;">Used for password-reset links
|
|
and, for frames you own, battery-low alerts (set a threshold in a
|
|
frame's Configuration tab).</p>
|
|
<label>Immich URL
|
|
<input type="text" name="immich_url" placeholder="http://your-immich-host:2283"
|
|
value="{{ user.immich_url }}">
|
|
</label>
|
|
<label>Immich API key
|
|
<input type="password" name="immich_api_key" autocomplete="off"
|
|
placeholder="{% if user.immich_api_key %}(unchanged -- enter a new key to replace){% else %}your-immich-api-key{% endif %}">
|
|
</label>
|
|
<p class="sub" style="margin-top: 8px;">Frames you own pull photos from
|
|
this Immich library. The key needs read access to albums/assets/faces
|
|
plus <code>sharedLink.create</code> for the on-frame share QR.</p>
|
|
|
|
<h2 class="card-title" style="margin-top: 24px;">Calendar</h2>
|
|
<label>Calendar URL (iCal .ics feed)
|
|
<input type="text" name="calendar_ics_url" placeholder="https://calendar.example.com/you.ics"
|
|
value="{{ user.calendar_ics_url }}">
|
|
</label>
|
|
<p class="sub" style="margin-top: 8px;">A single subscription link
|
|
(no login needed) -- e.g. Google Calendar's Settings →
|
|
"Secret address in iCal format", or Apple/Outlook's equivalent.</p>
|
|
|
|
<label style="margin-top: 20px;">CalDAV server URL
|
|
<input type="text" name="calendar_caldav_url" placeholder="https://cloud.example.com/remote.php/dav/"
|
|
value="{{ user.calendar_caldav_url }}">
|
|
</label>
|
|
<label>CalDAV username
|
|
<input type="text" name="calendar_caldav_username" autocomplete="off"
|
|
value="{{ user.calendar_caldav_username }}">
|
|
</label>
|
|
<label>CalDAV password
|
|
<input type="password" name="calendar_caldav_password" autocomplete="off"
|
|
placeholder="{% if user.calendar_caldav_password %}(unchanged -- enter a new password to replace){% else %}app password or account password{% endif %}">
|
|
</label>
|
|
<p class="sub" style="margin-top: 8px;">An account (Nextcloud,
|
|
Fastmail, iCloud, ...) that can expose more than one calendar --
|
|
e.g. Nextcloud's is usually
|
|
<code>https://your-server/remote.php/dav/</code>. Save this
|
|
section first, then use "Discover calendars" below to list what's
|
|
in the account.</p>
|
|
<button type="button" class="secondary" id="caldav-discover" style="margin-top: 12px;">Discover calendars</button>
|
|
<ul class="sub" id="caldav-calendar-list" style="margin-top: 8px; padding-left: 18px;">
|
|
{% if user.calendar_caldav_calendars %}
|
|
{% for c in user.calendar_caldav_calendars %}<li>{{ c.display_name }}</li>{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
|
|
<p class="sub" style="margin-top: 8px;">Neither of these shows up
|
|
anywhere by itself -- add individual calendars to any frame
|
|
you're linked to from that frame's Calendar tab, so a frame only
|
|
shows calendars people have actually chosen to share with it.</p>
|
|
|
|
<h2 class="card-title" style="margin-top: 24px;">Whiteboard (WebDAV)</h2>
|
|
<p class="sub">Credentials for whiteboard frame mode -- fetching a
|
|
specific file (e.g. a Nextcloud Whiteboard board) over WebDAV.
|
|
Any WebDAV server works, not just Nextcloud.</p>
|
|
<div class="checkbox-row">
|
|
<input type="checkbox" id="webdav_reuse_caldav_creds" name="webdav_reuse_caldav_creds"
|
|
value="true" {% if user.webdav_reuse_caldav_creds %}checked{% endif %}>
|
|
<label for="webdav_reuse_caldav_creds" style="margin: 0; font-weight: normal;">
|
|
Reuse my CalDAV username/password above (only works if it's the
|
|
same account -- e.g. Nextcloud's CalDAV and its regular file
|
|
storage share one login)</label>
|
|
</div>
|
|
<div id="webdav-creds-fields">
|
|
<label>WebDAV username
|
|
<input type="text" id="webdav_username" name="webdav_username" autocomplete="off"
|
|
value="{{ user.webdav_username }}">
|
|
</label>
|
|
<label>WebDAV password
|
|
<input type="password" id="webdav_password" name="webdav_password" autocomplete="off"
|
|
placeholder="{% if user.webdav_password %}(unchanged -- enter a new password to replace){% else %}app password or account password{% endif %}">
|
|
</label>
|
|
</div>
|
|
<label>WebDAV browse root (optional)
|
|
<input type="text" id="webdav_base_url" name="webdav_base_url" autocomplete="off"
|
|
placeholder="https://cloud.example.com/remote.php/dav/files/you/"
|
|
value="{{ user.webdav_base_url }}">
|
|
</label>
|
|
<p class="sub" style="margin-top: 4px;">A starting folder for the
|
|
file picker on a frame's Whiteboard tab, so you can browse to a
|
|
file instead of typing its exact URL. Not required -- you can
|
|
still paste a URL directly without setting this.</p>
|
|
<p class="sub" style="margin-top: 8px;">Doesn't show up anywhere by
|
|
itself -- point a specific frame's Whiteboard tab at a file URL
|
|
using this account.</p>
|
|
|
|
<h2 class="card-title" style="margin-top: 24px;">Change password</h2>
|
|
<label>Current password
|
|
<input type="password" name="current_password" autocomplete="current-password">
|
|
</label>
|
|
<label>New password
|
|
<input type="password" name="new_password" minlength="8" autocomplete="new-password">
|
|
</label>
|
|
<p class="sub" style="margin-top: 8px;">Leave both blank to keep your
|
|
current password.</p>
|
|
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
</section>
|
|
|
|
<div id="result"></div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="/static/settings.js"></script>
|
|
{% endblock %}
|