contentdb/app/templates/packages/remove.html

40 lines
1.3 KiB
HTML

{% extends "packages/package_base.html" %}
{% block title %}
Remove {{ package.title }}
{% endblock %}
{% block content %}
<form method="POST" action="">
<h2 class="mt-0">{{ _("Remove %(title)s", title=package.title) }}</h2>
<p>
{{ _("In order to avoid data loss, you cannot permanently delete packages.
You can remove them from ContentDB, which will cause them to not be
visible to any users and they may be permanently deleted in the future.
The Admin can restore removed packages, if needed.") }}
</p>
{% if package.approved %}
<p>
{{ _("Unapproving a package will put it back into Draft, where
it can be submitted for approval again.") }}
</p>
{% endif %}
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<div class="form-group">
<label for="reason">Reason</label>
<input id="reason" class="form-control" type="text" name="reason" required minlength="5">
</div>
<a class="btn btn-secondary float-right" href="{{ package.getURL("packages.view") }}">{{ _("Cancel") }}</a>
<input type="submit" name="delete" value="Remove" class="btn btn-danger mr-2" />
{% if package.approved %}
<input type="submit" name="unapprove" value="Unapprove" class="btn btn-warning" />
{% endif %}
</form>
{% endblock %}