aurweb/templates/partials/packages/search_actions.html
Kevin Morris 5ae9d09e98
fix: remove unused "Merge into" input from /packages
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>
2021-10-20 23:27:07 -07:00

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>