mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Tests: - Enable/disable button is not shown. - Diagnostics menu item is shown and works. - Both Configure and manage snapshots tabs are shown. - Changing configuration works, updated configuration is shown. - Deleting some snapshots works. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
19 lines
509 B
HTML
19 lines
509 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
<form id="snapshot-configure" class="form-horizontal form-configuration"
|
|
method="post">
|
|
{% csrf_token %}
|
|
<h3>{% trans "Configuration" %}</h3>
|
|
{{ form|bootstrap_horizontal:'col-md-4' }}
|
|
<input type="submit" class="btn btn-primary" name="update"
|
|
value="{% trans "Update setup" %}"/>
|
|
</form>
|
|
{% endblock %}
|