mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Affects: templates/partials/packages/search_actions.html Signed-off-by: Kevin Morris <kevr@0cost.org>
25 lines
1 KiB
HTML
25 lines
1 KiB
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>
|
|
|
|
{% if request.user.is_trusted_user() or request.user.is_developer() %}
|
|
<label for="merge_into">{{ "Merge into" | tr }}</label>
|
|
<input id="merge_into" type="text" name="merge_into" />
|
|
{% endif %}
|
|
|
|
<label class="confirmation">
|
|
<input type="checkbox" name="confirm" />
|
|
{{ "Confirm" | tr }}
|
|
</label>
|
|
|
|
<input id="search-action-submit" class="button" type="submit" value="{{ 'Go' | tr }}" />
|
|
</p>
|