Django Library Mycreole
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

delete.html 505B

1234567891011121314151617
  1. {% extends "themes/"|add:settings.page_theme|add:"/base.html" %}
  2. {% load static %}
  3. {% load i18n %}
  4. {% block content %}
  5. <h1>Delete Attachment</h1>
  6. Are you sure deleting {{ filename }}?
  7. <form class="form" method="post">
  8. {% csrf_token %}
  9. <input type="hidden" name="next" value="{{ next }}">
  10. <input type="submit" name="yes" value="{% trans "Yes" %}" class="button" />
  11. <input type="submit" name="no" value="{% trans "No" %}" class="button" />
  12. </form>
  13. {% endblock content %}