forked from wiktor/spejstore-new
9 lines
234 B
Python
9 lines
234 B
Python
|
from django.conf.urls import include, url
|
||
|
from storage.views import index, search, item_display
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', index),
|
||
|
url(r'^search$', search),
|
||
|
url(r'^item/(?P<pk>.*)$', item_display, name='item-display'),
|
||
|
]
|