8 lines
199 B
Python
8 lines
199 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^$', 'buyable.views.showItems'),
|
||
|
(r'^show/(\d+)/$', 'buyable.views.showItem'),
|
||
|
(r'^buy/(\d+)/$', 'buyable.views.buyItem'),
|
||
|
)
|