mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
Tested that on the Btrfs filesystem snapshot functional tests pass and on the ext4 filesystem tests are skipped. Signed-off-by: Veiko Aasa <veiko17@disroot.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
18 lines
533 B
HTML
18 lines
533 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
<div id="snapshot-not-supported" class="alert alert-danger">
|
|
{% blocktrans trimmed with fs_types_supported|join:', ' as types_supported %}
|
|
You have a filesystem of type <strong>{{ fs_type }}</strong>. Snapshots
|
|
are currently only available on <strong>{{ types_supported }}</strong>
|
|
filesystems.
|
|
{% endblocktrans %}
|
|
</div>
|
|
{% endblock %}
|