15 lines
496 B
Python
15 lines
496 B
Python
# This file is part of k4ever, a point-of-sale system
|
|
# Contact............ <k4ever@lists.someserver.de>
|
|
# Website............ http://k4ever.someserver.de/
|
|
# Bug tracker........ http://k4ever.someserver.de/report
|
|
#
|
|
# Licensed under GNU Affero General Public License v3 or later
|
|
|
|
from django.conf.urls.defaults import patterns
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', 'transaction.views.overview'),
|
|
(r'^state/(success|error|vsuccess|verror)/(payin|payout)/$', 'transaction.views.state'),
|
|
)
|