diff --git a/representatives_votes/urls.py b/representatives_votes/urls.py index e6e2b7475f6bf1780790d49e80065d88a4b1661c..1e307ad302043f6f7ff6f1781502b65bcd73264f 100644 --- a/representatives_votes/urls.py +++ b/representatives_votes/urls.py @@ -10,7 +10,7 @@ urlpatterns = [ name='dossier-detail' ), url( - r'dossier/$', + r'^dossier/$', views.DossierList.as_view(), name='dossier-list' ), @@ -21,7 +21,7 @@ if 'dal_select2' in settings.INSTALLED_APPS: urlpatterns.append( url( - 'autocomplete/proposal/$', + '^autocomplete/proposal/$', ProposalAutocomplete.as_view(), name='proposal-autocomplete', ),