feat: allow filtering requests from maintainers

These are usually easy to handle from TUs so allow to filter for them

Signed-off-by: Leonidas Spyropoulos <artafinde@archlinux.org>
This commit is contained in:
Leonidas Spyropoulos 2022-11-10 21:28:16 +00:00
parent 500d6b403b
commit bce5b81acd
No known key found for this signature in database
GPG key ID: 59E43E106B247368
4 changed files with 69 additions and 19 deletions

View file

@ -56,6 +56,11 @@
<input type="checkbox" name="filter_rejected" id="id_filter_rejected" value="True" {{ "checked" if
filter_rejected == true }}/>
</div>
<div>
<label for="id_filter_maintainer_requests" title="Maintainer's requests">{{ "Maintainer's requests" | tr }}</label>
<input type="checkbox" name="filter_maintainer_requests" id="id_filter_maintainer_requests"
value="True" {{ "checked" if filter_maintainer_requests == true }}/>
</div>
<div>
<button type='submit' class='button' name='submit' value='Filter'>{{ "Filter" | tr }}</button>
</div>