diff --git a/physionet-django/console/forms.py b/physionet-django/console/forms.py index c085efaf12..89ddcf3139 100644 --- a/physionet-django/console/forms.py +++ b/physionet-django/console/forms.py @@ -984,17 +984,6 @@ class Meta: } -class ProjectFilterForm(forms.ModelForm): - class Meta: - model = PublishedProject - fields = ('title',) - widgets = { - 'title': autocomplete.ListSelect2(url='project-autocomplete', attrs={ - 'class': 'border', 'data-placeholder': 'Search...' - }) - } - - class CodeOfConductForm(forms.ModelForm): class Meta: model = CodeOfConduct diff --git a/physionet-django/console/urls.py b/physionet-django/console/urls.py index ace43bdac5..694daabe50 100644 --- a/physionet-django/console/urls.py +++ b/physionet-django/console/urls.py @@ -94,9 +94,7 @@ # guidelines path('guidelines/review/', views.guidelines_review, name='guidelines_review'), - path('user-autocomplete/', views.UserAutocomplete.as_view(), name='user-autocomplete'), - path('project-autocomplete/', views.ProjectAutocomplete.as_view(), name='project-autocomplete'), # editorial stats path('usage/editorial/stats/', views.editorial_stats, name='editorial_stats'),