k4ever/k4ever/buyable/urls.py

11 lines
334 B
Python
Raw Normal View History

2010-10-16 17:33:18 +02:00
from django.conf.urls.defaults import *
2010-10-19 01:03:38 +02:00
#/store/
2010-10-16 17:33:18 +02:00
urlpatterns = patterns('',
(r'^$', 'buyable.views.showItems'),
(r'^show/(\d+)/$', 'buyable.views.showItem'),
2010-10-19 01:03:38 +02:00
(r'^buy/(\d+)/(|with/deposit|only/deposit)/?$', 'buyable.views.buyItem'),
2010-12-02 02:39:15 +01:00
(r'^bought/(\d+)/?$', 'buyable.views.boughtItem'),
2010-12-02 13:44:10 +01:00
(r'^history/?$', 'buyable.views.history'),
2010-10-19 01:03:38 +02:00
)