mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 18:23:27 +00:00
21 lines
567 B
Django/Jinja
21 lines
567 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Delete confirmation{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans %}Delete confirmation{% endtrans %}</h2>
|
|
<form action="" method="post">{% csrf_token %}
|
|
<p>{% trans obj=object %}Are you sure you want to delete "{{ obj }}"?{% endtrans %}</p>
|
|
<input type="submit" value="{% trans %}Confirm{% endtrans %}" />
|
|
</form>
|
|
<form method="GET" action="javascript:history.back();">
|
|
<input type="submit" name="cancel" value="{% trans %}Cancel{% endtrans %}" />
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|