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.
13 lines
525 B
13 lines
525 B
#-*- coding: utf-8 -*-
|
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
|
url(r'^results/(?P<slug>[\w-]+)/$', views.SearchDetailView.as_view(), name='search-detail'),
|
|
url(r'^trademark/(?P<pk>[\w-]+)/$', views.TrademarkDetailView.as_view(), name='trademark-detail'),
|
|
url(r'^request/(?P<slug>[\w-]+)/$', views.Search.as_view(), name='search-detail'),
|
|
url(r'^request/$', views.Search.as_view(), name='search'),
|
|
)
|
|
|