mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
Tests: - Functional tests pass. - Adding domain triggers domain_added signal. - Editing a domain triggers domain removed and domain added signals. - Deleting a domain trigger domain removed signal. - For each of the action, the status table shows updated information. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
26 lines
488 B
HTML
26 lines
488 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{{ title }}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
App configurations will be updated.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form form-delete" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-md btn-danger"
|
|
value="{% blocktrans %}Delete{% endblocktrans %}"/>
|
|
</form>
|
|
|
|
{% endblock %}
|