FreedomBox/plinth/modules/storage/templates/storage_expand.html
Sunil Mohan Adapa e89e2b4a2a
*.html: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:19 +02:00

31 lines
754 B
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
<h2>{{ title }}</h2>
{% if expandable_root_size %}
<p>
{% blocktrans trimmed %}
Please backup your data before proceeding. After this
operation, {{ expandable_root_size }} of additional free space
will be available in your root partition.
{% endblocktrans %}
</p>
<form class="form" method="post">
{% csrf_token %}
<input type="submit" class="btn btn-primary"
value="{% trans "Expand Root Partition" %}"/>
</form>
{% else %}
<p>There are no partitions available to expand.
{% endif %}
{% endblock %}