Fix chat user search
This commit is contained in:
parent
47d3811aa5
commit
37e5e6a3b3
3 changed files with 48 additions and 18 deletions
|
@ -76,6 +76,7 @@ from judge.views.problem_data import (
|
|||
from judge.views.register import ActivationView, RegistrationView
|
||||
from judge.views.select2 import (
|
||||
AssigneeSelect2View,
|
||||
ChatUserSearchSelect2View,
|
||||
CommentSelect2View,
|
||||
ContestSelect2View,
|
||||
ContestUserSearchSelect2View,
|
||||
|
@ -807,6 +808,11 @@ urlpatterns = [
|
|||
UserSearchSelect2View.as_view(),
|
||||
name="user_search_select2_ajax",
|
||||
),
|
||||
url(
|
||||
r"^user_search_chat$",
|
||||
ChatUserSearchSelect2View.as_view(),
|
||||
name="chat_user_search_select2_ajax",
|
||||
),
|
||||
url(
|
||||
r"^contest_users/(?P<contest>\w+)$",
|
||||
ContestUserSearchSelect2View.as_view(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue