Files
zhijie-ERP/selfhelp/urls.py
T

7 lines
168 B
Python
Raw Normal View History

2015-07-30 13:01:42 +08:00
from django.conf.urls import include, url,static
import selfhelp.views
urlpatterns = [
2017-04-30 00:22:04 +08:00
url(r"(?P<model>\w+)/(?P<object_id>\d+)/pay", selfhelp.views.pay_action),
2015-07-30 13:01:42 +08:00
]