mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00

This should allow the templates to be found and swapped out more easily. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
35 lines
723 B
HTML
35 lines
723 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 %}OpenEmbedded metadata index - delete {{ object_type }}{% endblock %}
|
|
{% endautoescape %}
|
|
-->
|
|
|
|
{% block content %}
|
|
{% autoescape on %}
|
|
|
|
<h2>Delete {{ object_type }}</h2>
|
|
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<input type="submit" value="Delete" class='btn btn-warning' />
|
|
<a href="{{ return_url }}" class='btn'>Cancel</a>
|
|
</form>
|
|
|
|
{% endautoescape %}
|
|
|
|
{% endblock %}
|