mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
25 lines
748 B
HTML
25 lines
748 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
{% load extras %}
|
|
|
|
{% block configuration %}
|
|
<div id="snapshot-not-supported" class="alert alert-danger d-flex align-items-center">
|
|
<div class="me-2">
|
|
{% icon 'exclamation-triangle' %}
|
|
<span class="visually-hidden">{% trans "Caution:" %}</span>
|
|
</div>
|
|
<div>
|
|
{% 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>
|
|
</div>
|
|
{% endblock %}
|