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

This provides a way to set "meta" fields (SUMMARY, DESCRIPTION, HOMEPAGE, BUGTRACKER, SECTION, and LICENSE) for a number of recipes at once, and then download those changes in the form of one or more patch files which can be submitted for merging into the layer. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
35 lines
703 B
HTML
35 lines
703 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 "{{ object }}"?</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 %}
|