mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Tests: - Trigger the message using code change and observe the messages displayed. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
22 lines
475 B
HTML
22 lines
475 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
|
|
{% include "power_busy_warning.html" %}
|
|
|
|
<div class="btn-toolbar">
|
|
<a class="btn btn-default btn-md" href="{% url 'power:restart' %}">
|
|
{% trans "Restart" %}</a>
|
|
|
|
<a class="btn btn-default btn-md" href="{% url 'power:shutdown' %}">
|
|
{% trans "Shut Down" %}</a>
|
|
</div>
|
|
|
|
{% endblock %}
|