Commit 9c77b11579969acb4338e0b0c72a4c2da89234c0
1 parent
1d6cc9e7
Exists in
master
and in
2 other branches
Search url included
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
news/urls.py
... | ... | @@ -6,5 +6,6 @@ urlpatterns = [ |
6 | 6 | url(r'^view/(?P<slug>[\w_-]+)/$', views.VisualizeNews.as_view(), name = 'view'), |
7 | 7 | url(r'^create/$', views.CreateNewsView.as_view(), name='create'), |
8 | 8 | url(r'^update/(?P<slug>[\w_-]+)/$', views.UpdateNewsView.as_view(), name = 'update'), |
9 | + url(r'^search/$', views.SearchNewsView.as_view(), name = 'search'), | |
9 | 10 | |
10 | 11 | ] | ... | ... |