| [acpMenu](pip/acp-menu.md) | Admin panel menu categories and items |
| [acpSearchProvider](pip/acp-search-provider.md) | Data provider for the admin panel search |
| [acpTemplate](pip/acp-template.md) | Admin panel templates |
+| [acpTemplateDelete](pip/acp-template-delete.md) | Deletes admin panel templates installed with [acpTemplate](pip/acp-template.md) |
| [bbcode](pip/bbcode.md) | BBCodes for rich message formatting |
| [box](pip/box.md) | Boxes that can be placed anywhere on a page |
| [clipboardAction](pip/clipboard-action.md) | Perform bulk operations on marked objects |
--- /dev/null
+# ACP Template Delete Package Installation Plugin
+
+Deletes admin panel templates installed with the [acpTemplate](pip/acp-template.md) package installation plugin.
+
+!!! warning "You cannot delete acp templates provided by other packages."
+
+
+## Components
+
+Each item is described as a `<template>` element with an optional `application`, which behaves like it does for [acp templates](acp-template.md#application).
+The templates are identified by their name like when adding [template listeners](template-listener.md), i.e. by the file name without the `.tpl` file extension.
+
+## Example
+
+{jinja{ codebox(
+ title="acpTemplateDelete.xml",
+ language="xml",
+ filepath="package/pip/acpTemplateDelete.xml"
+) }}
- 'acpMenu': 'package/pip/acp-menu.md'
- 'acpSearchProvider': 'package/pip/acp-search-provider.md'
- 'acpTemplate': 'package/pip/acp-template.md'
+ - 'acpTemplateDelete': 'package/pip/acp-template-delete.md'
- 'bbcode': 'package/pip/bbcode.md'
- 'box': 'package/pip/box.md'
- 'clipboardAction': 'package/pip/clipboard-action.md'
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/2019/acpTemplateDelete.xsd">
+ <delete>
+ <template>fouAdd</template>
+ <template application="app">__appAdd</template>
+ </delete>
+</data>