mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
43 lines
964 B
HTML
43 lines
964 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<h2>{{ title }}</h2>
|
|
|
|
<p>{% trans "Delete this archive permanently?" %}</p>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<table class="table table-bordered table-condensed table-striped">
|
|
<thead>
|
|
<th>{% trans "Name" %}</th>
|
|
<th>{% trans "Time" %}</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ archive.name }}</td>
|
|
<td>{{ archive.time }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<p>
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-danger"
|
|
value="{% blocktrans trimmed with name=archive.name %}
|
|
Delete Archive {{ name }}
|
|
{% endblocktrans %}"/>
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|