├── mysite_login ├── __init__.py ├── login │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ ├── 0003_reverse_to_sell_content1.py │ │ ├── 0002_auto_20191010_1419.py │ │ ├── 0001_initial.py │ │ └── 0002_conventional_field_reverse_to_sell.py │ ├── templates │ │ ├── __init__.py │ │ ├── login │ │ │ ├── __init__.py │ │ │ ├── conventional_parameters.html │ │ │ ├── monitor.html │ │ │ ├── failure.html │ │ │ ├── index.html │ │ │ ├── merchant.html │ │ │ ├── login.html │ │ │ ├── user_information.html │ │ │ ├── add_user_information.html │ │ │ └── register.html │ │ └── base.html │ ├── tests.py │ ├── apps.py │ ├── admin.py │ ├── urls.py │ ├── models.py │ ├── forms.py │ ├── core.py │ └── views.py ├── static │ ├── __init__.py │ ├── css │ │ ├── __init__.py │ │ └── login.css │ ├── js │ │ └── __init__.py │ └── bootstrap-3.3.7-dist │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── js │ │ ├── npm.js │ │ └── bootstrap.min.js │ │ └── css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap-theme.css │ │ └── bootstrap-theme.css.map ├── mysite_login │ ├── __init__.py │ ├── wsgi.py │ ├── urls.py │ └── settings.py ├── bootstrap-3.3.7-dist.zip └── manage.py ├── all_test ├── README.md ├── LICENSE └── .gitignore /mysite_login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /all_test: -------------------------------------------------------------------------------- 1 | just for init test 2 | -------------------------------------------------------------------------------- /mysite_login/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/mysite_login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/static/css/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/static/js/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/login/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/login/templates/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite_login/login/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite_login/login/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class LoginConfig(AppConfig): 5 | name = 'login' 6 | -------------------------------------------------------------------------------- /mysite_login/bootstrap-3.3.7-dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencee/anti_seller_system/HEAD/mysite_login/bootstrap-3.3.7-dist.zip -------------------------------------------------------------------------------- /mysite_login/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencee/anti_seller_system/HEAD/mysite_login/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mysite_login/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencee/anti_seller_system/HEAD/mysite_login/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mysite_login/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datasciencee/anti_seller_system/HEAD/mysite_login/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mysite_login/login/templates/login/conventional_parameters.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 || id | 17 |商家名称 | 18 |商品的ASIN码 | 19 |商品的销售地 | 20 |
|---|---|---|---|
| {{forloop.counter}} | 23 |{{userinfor.store_name}} | 24 |{{userinfor.goods_id}} | 25 |{{userinfor.country}} | 26 |