11 lines
334 B
Python
11 lines
334 B
Python
from django.conf.urls.defaults import *
|
|
|
|
#/store/
|
|
urlpatterns = patterns('',
|
|
(r'^$', 'buyable.views.showItems'),
|
|
(r'^show/(\d+)/$', 'buyable.views.showItem'),
|
|
(r'^buy/(\d+)/(|with/deposit|only/deposit)/?$', 'buyable.views.buyItem'),
|
|
(r'^bought/(\d+)/?$', 'buyable.views.boughtItem'),
|
|
(r'^history/?$', 'buyable.views.history'),
|
|
)
|