aboutsummaryrefslogtreecommitdiffstats
path: root/templates/layerindex/deleteconfirm.html
blob: 08e51662545bdd3558fd5304cec1bdff09336b74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% load i18n %}

{% comment %}

  layerindex-web - delete confirmation template

  Copyright (C) 2013 Intel Corporation
  Licensed under the MIT license, see COPYING.MIT for details

{% endcomment %}

<!--
{% autoescape on %}
{% block title_append %} - delete {{ object_type }}{% endblock %}
{% endautoescape %}
-->

{% block content %}
{% autoescape on %}

<h2>Delete {{ object_type }}</h2>

<p>Are you sure you want to delete &quot;{{ object }}&quot;?</p>

<form action="" method="post">
    {% csrf_token %}
    <input type="submit" value="Delete" class='btn btn-warning' />
    <a href="{{ cancel_url }}" class='btn'>Cancel</a>
</form>

{% endautoescape %}

{% endblock %}