summaryrefslogtreecommitdiff
path: root/patchwork/urls.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen.finucane@intel.com>2015-08-24 11:05:47 +0100
committerStephen Finucane <stephen.finucane@intel.com>2016-01-25 16:23:51 +0000
commitf439f5414206c94d486c60801a86acc57ad3f273 (patch)
tree821bc9c35fb282415585bb22f63c14571fd5a644 /patchwork/urls.py
parentde99fa861b1fc85a5be45e941a233ba8bba58200 (diff)
downloadpatchwork-f439f5414206c94d486c60801a86acc57ad3f273.tar
patchwork-f439f5414206c94d486c60801a86acc57ad3f273.tar.gz
Add delegate filter autocomplete support
It would be helpful to provide autocomplete functionality for the delegate filter field, similar to that provided for the submitter field. This will provide a way to handle larger delegate lists without overloading the user with options. Add this functionality through use of Selectize, which is already used to provide similar functionality for filtering of "submitters". Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'patchwork/urls.py')
-rw-r--r--patchwork/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/patchwork/urls.py b/patchwork/urls.py
index 67167c1..550e567 100644
--- a/patchwork/urls.py
+++ b/patchwork/urls.py
@@ -109,6 +109,7 @@ urlpatterns = [
# submitter autocomplete
url(r'^submitter/$', api_views.submitters, name='api-submitters'),
+ url(r'^delegate/$', api_views.delegates, name='api-delegates'),
# email setup
url(r'^mail/$', mail_views.settings, name='mail-settings'),