18 рядки
505 B
HTML
18 рядки
505 B
HTML
{% extends "themes/"|add:settings.page_theme|add:"/base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<h1>Delete Attachment</h1>
|
|
Are you sure deleting {{ filename }}?
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
<input type="submit" name="yes" value="{% trans "Yes" %}" class="button" />
|
|
<input type="submit" name="no" value="{% trans "No" %}" class="button" />
|
|
</form>
|
|
|
|
|
|
{% endblock content %}
|