Files
zhijie-ERP/selfhelp/urls.py
T
2015-07-30 13:01:42 +08:00

7 lines
170 B
Python

from django.conf.urls import include, url,static
import selfhelp.views
urlpatterns = [
url(r"(?P<model>\w+)/(?P<object_id>\d+)/pay", 'selfhelp.views.pay_action'),
]