|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name="index"),
|
|
url(r'^product/(?P<product_id>[0-9]+)/$', views.product, name="detail"),
|
|
url(r'^sketch/(?P<sketch_id>[0-9]+)/$', views.sketch, name="sketch"),
|
|
] |