1、添加README

2、添加Install目录,并配备requirements.txt
3、修改urls.py配置,兼容django-1.10版本
4、Mysql驱动器使用pymysql替代mysqldb
This commit is contained in:
Yuri
2017-04-30 00:22:04 +08:00
parent c99727d16f
commit a2f3d3326e
9 changed files with 62 additions and 18 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ 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'),
url(r"(?P<model>\w+)/(?P<object_id>\d+)/pay", selfhelp.views.pay_action),
]