mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Renaming of symbols. Functions, variables, values, DB values, etc. Basically everything that is not user-facing. This only covers "Trusted User" things: tests, comments, etc. will covered in a following commit.
20 lines
846 B
HTML
20 lines
846 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_package_maintainer() 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>
|