mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
When using this input on `live` as a TU, the field is not taken into account. Tried with no action and with the Delete Packages action, which ended up deleting the packages but not merging into the given target. So, this commit removes that input from the page. Signed-off-by: Kevin Morris <kevr@0cost.org>
20 lines
840 B
HTML
20 lines
840 B
HTML
<p>
|
|
<select name="action">
|
|
<option value="">{{ "Actions" | tr }}</option>
|
|
<option value="unflag">{{ "Unflag Out-of-date" | tr }}</option>
|
|
<option value="adopt">{{ "Adopt Packages" | tr }}</option>
|
|
<option value="disown">{{ "Disown Packages" | tr }}</option>
|
|
{% if request.user.is_trusted_user() or request.user.is_developer() %}
|
|
<option value="delete">{{ "Delete Packages" | tr }}</option>
|
|
{% endif %}
|
|
<option value="notify">{{ "Notify" | tr }}</option>
|
|
<option value="unnotify">{{ "UnNotify" | tr }}</option>
|
|
</select>
|
|
|
|
<label class="confirmation">
|
|
<input type="checkbox" name="confirm" />
|
|
{{ "Confirm" | tr }}
|
|
</label>
|
|
|
|
<input id="search-action-submit" class="button" type="submit" value="{{ 'Go' | tr }}" />
|
|
</p>
|