You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
356 B
11 lines
356 B
#-*- coding: utf-8 -*-
|
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = patterns('',
|
|
# url(r'^search/$', views.IndexView.as_view(), name='index'),
|
|
url(r'^online_search/(?P<slug>[\w-]+)/$', views.SearchDetailView.as_view(), name='search-detail'),
|
|
url(r'^online_search/$', views.Search.as_view(), name='search'),
|
|
)
|
|
|