mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
This commit changes several things about how we were handling package requests. Modifications (requests): ------------- - `/requests/{id}/close` no longer provides an Accepted selection. All manual request closures will cause a rejection. - Relevent `pkgbase` actions now trigger request closures: `/pkgbase/{name}/delete` (deletion), `/pkgbase/{name}/merge` (merge) and `/pkgbase/{name}/disown` (orphan). - Comment fields have been added to `/pkgbase/{name}/{delete,merge,disown}`, which is used to set the `PackageRequest.ClosureComment` on pending requests. If the comment field is left blank, a closure comment is autogenerated. - Autogenerated request notifications are only sent out once as a closure notification. - Some markup has been fixed. Modifications (disown/orphan): ----------------------------- - Orphan requests are now handled through the same path as deletion/merge. - We now check for due date when disowning as non-maintainer; previously, this was only done for display and not functionally. This check applies to Trusted Users' disowning of a package. This style of notification flow does reduce our visibility, but accounting can still be done via the close request; it includes the action, pkgbase name and the user who accepted it. Closes #204 Signed-off-by: Kevin Morris <kevr@0cost.org>
62 lines
1.7 KiB
HTML
62 lines
1.7 KiB
HTML
{% extends "partials/layout.html" %}
|
|
|
|
{% block pageContent %}
|
|
|
|
{% if errors %}
|
|
<ul class="errorlist">
|
|
{% for error in errors %}
|
|
<li>{{ error | tr }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<div class="box">
|
|
<h2>{{ "Delete Package" | tr }}: {{ pkgbase.Name }}</h2>
|
|
|
|
<p>
|
|
{{
|
|
"Use this form to delete the package base %s%s%s and "
|
|
"the following packages from the AUR: "
|
|
| tr | format("<strong>", pkgbase.Name, "</strong>") | safe
|
|
}}
|
|
</p>
|
|
|
|
<ul>
|
|
{% for package in pkgbase.packages.all() %}
|
|
<li>{{ package.Name }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<p>
|
|
{{
|
|
"Deletion of a package is permanent. "
|
|
"Select the checkbox to confirm action." | tr
|
|
}}
|
|
</p>
|
|
|
|
<form action="/pkgbase/{{ pkgbase.Name }}/delete" method="post">
|
|
<fieldset>
|
|
<p>
|
|
<label class="confirmation">
|
|
<input type="checkbox" name="confirm" value="1" />
|
|
{{ "Confirm package deletion" | tr }}
|
|
</label>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="id_comments">{{ "Comments" | tr }}:</label>
|
|
<textarea id="id_comments" name="comments"
|
|
rows="5" cols="50"></textarea>
|
|
</p>
|
|
|
|
<p>
|
|
<input class="button"
|
|
type="submit"
|
|
value="{{ 'Delete' | tr }}"
|
|
/>
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
|
|
</div>
|
|
{% endblock %}
|