contentdb/app/templates/packages/remove.html

51 lines
1.6 KiB
HTML
Raw Normal View History

2021-05-04 04:15:26 +02:00
{% extends "packages/package_base.html" %}
2018-05-25 19:28:24 +02:00
{% block title %}
2021-05-04 04:15:26 +02:00
Remove {{ package.title }}
2018-05-25 19:28:24 +02:00
{% endblock %}
{% block content %}
2021-05-04 04:15:26 +02:00
<form method="POST" action="">
2022-01-08 00:27:00 +01:00
<h2 class="mt-0">{{ _("Remove %(title)s", title=package.title) }}</h2>
<p>
2022-01-08 00:27:00 +01:00
{{ _("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.
2022-01-08 00:27:00 +01:00
The Admin can restore removed packages, if needed.") }}
</p>
2018-05-25 19:28:24 +02:00
{% if package.approved %}
<p>
2022-01-08 00:27:00 +01:00
{{ _("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() }}" />
2023-08-22 20:58:43 +02:00
<div class="form-group mb-3">
<label for="reason" class="form-label">{{ _("Reason") }}</label>
<span class="ms-1 text-danger">
<small>
<i class="fas fa-asterisk"></i>
</small>
</span>
2023-08-22 20:58:43 +02:00
<span class="ms-3 text-muted">
{{ _("Required") }}
</span>
2022-01-09 22:12:29 +01:00
<input id="reason" class="form-control" type="text" name="reason" required minlength="5">
2022-01-09 22:14:59 +01:00
<small class="form-text text-muted">
{{ _("Reason for unapproval / deletion, this is shown in the audit log") }}
</small>
2022-01-09 22:12:29 +01:00
</div>
2023-08-22 20:58:43 +02:00
<a class="btn btn-secondary float-end" href="{{ package.get_url('packages.view') }}">{{ _("Cancel") }}</a>
2023-08-22 20:58:43 +02:00
<input type="submit" name="delete" value="{{ _('Remove') }}" class="btn btn-danger me-2" />
{% if package.approved %}
2023-01-08 13:21:25 +01:00
<input type="submit" name="unapprove" value="{{ _('Unapprove') }}" class="btn btn-warning" />
{% endif %}
2021-05-04 04:15:26 +02:00
</form>
2018-05-25 19:28:24 +02:00
{% endblock %}