mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
feat: Add "Requests" filter option for package name
- Add package name textbox for filtering requests (with auto-suggest) - Make "x pending requests" a link for TU/Dev on the package details page Signed-off-by: moson-mo <mo-son@mailbox.org>
This commit is contained in:
parent
acdb2864de
commit
f24fae0ce6
7 changed files with 109 additions and 8 deletions
6
static/js/typeahead-requests.js
Normal file
6
static/js/typeahead-requests.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const input = document.getElementById('id_filter_pkg_name');
|
||||
const form = document.getElementById('todolist_filter');
|
||||
const type = 'suggest-pkgbase';
|
||||
typeahead.init(type, input, form);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue