layerindex-web/templates/layerindex/deleteconfirm.html
Paul Eggleton 517424dc81 Upgrade to Bootstrap 3
Use a more modern version of Bootstrap and take the opportunity to
upgrade jQuery to the latest version at the same time. This provides
better browser compatibility, moves to MIT license, allows us to make
the site more responsive for different devices in future, and provides
theming capabilities for custom installs among other improvements.

(I chose to upgrade to v3 for now rather than straight to v4 as it was
easier to do this gradually.)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-09-20 15:57:59 +12:00

35 lines
715 B
HTML

{% 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 btn-default">Cancel</a>
</form>
{% endautoescape %}
{% endblock %}