├── .gitignore ├── CCOS ├── CCOS.cdb ├── CCOS.cdm ├── CCOS.ldb ├── CCOS.ldm ├── CCOS.pdb ├── CCOS.pdm ├── crebas.sql └── 工作空间.sws ├── LICENSE ├── README.md ├── django_CCOS ├── canteen │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── customer │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── dish │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── django_CCOS │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── media │ └── images │ │ └── backimage.jpg ├── static │ ├── bootstrap-3.3.7-dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── css │ │ ├── list.css │ │ ├── login.css │ │ ├── main.css │ │ ├── master.css │ │ ├── message_info.css │ │ └── upload.css │ └── js │ │ ├── jquery-3.2.1.js │ │ └── jquery-3.2.1.min.js └── templates │ ├── base.html │ ├── canteen │ ├── canteen_base.html │ ├── canteen_list.html │ └── shop_list.html │ ├── customer │ ├── index.html │ ├── information.html │ ├── login.html │ ├── logout.html │ ├── register.html │ └── show_info.html │ └── dish │ ├── dish_base.html │ ├── dish_detail.html │ ├── dish_list.html │ └── my_order.html ├── img ├── func1.png ├── func2.png ├── image-20211107210032459.png ├── image-20211107210104324.png ├── image-20211107210124156.png ├── image-20211107210146836.png ├── image-20211107210220338.png └── logo.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/.gitignore -------------------------------------------------------------------------------- /CCOS/CCOS.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/CCOS.cdb -------------------------------------------------------------------------------- /CCOS/CCOS.cdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/CCOS.cdm -------------------------------------------------------------------------------- /CCOS/CCOS.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/CCOS.ldb -------------------------------------------------------------------------------- /CCOS/CCOS.ldm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/CCOS.ldm -------------------------------------------------------------------------------- /CCOS/CCOS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/CCOS.pdb -------------------------------------------------------------------------------- /CCOS/CCOS.pdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/CCOS.pdm -------------------------------------------------------------------------------- /CCOS/crebas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/crebas.sql -------------------------------------------------------------------------------- /CCOS/工作空间.sws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/CCOS/工作空间.sws -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/README.md -------------------------------------------------------------------------------- /django_CCOS/canteen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/canteen/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/canteen/admin.py -------------------------------------------------------------------------------- /django_CCOS/canteen/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/canteen/apps.py -------------------------------------------------------------------------------- /django_CCOS/canteen/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/canteen/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/canteen/models.py -------------------------------------------------------------------------------- /django_CCOS/canteen/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/canteen/tests.py -------------------------------------------------------------------------------- /django_CCOS/canteen/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/canteen/urls.py -------------------------------------------------------------------------------- /django_CCOS/canteen/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/canteen/views.py -------------------------------------------------------------------------------- /django_CCOS/customer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/customer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/admin.py -------------------------------------------------------------------------------- /django_CCOS/customer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/apps.py -------------------------------------------------------------------------------- /django_CCOS/customer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/forms.py -------------------------------------------------------------------------------- /django_CCOS/customer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/customer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/models.py -------------------------------------------------------------------------------- /django_CCOS/customer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/tests.py -------------------------------------------------------------------------------- /django_CCOS/customer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/urls.py -------------------------------------------------------------------------------- /django_CCOS/customer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/customer/views.py -------------------------------------------------------------------------------- /django_CCOS/dish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/dish/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/dish/admin.py -------------------------------------------------------------------------------- /django_CCOS/dish/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/dish/apps.py -------------------------------------------------------------------------------- /django_CCOS/dish/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/dish/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/dish/models.py -------------------------------------------------------------------------------- /django_CCOS/dish/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/dish/tests.py -------------------------------------------------------------------------------- /django_CCOS/dish/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/dish/urls.py -------------------------------------------------------------------------------- /django_CCOS/dish/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/dish/views.py -------------------------------------------------------------------------------- /django_CCOS/django_CCOS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/django_CCOS/__init__.py -------------------------------------------------------------------------------- /django_CCOS/django_CCOS/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/django_CCOS/asgi.py -------------------------------------------------------------------------------- /django_CCOS/django_CCOS/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/django_CCOS/settings.py -------------------------------------------------------------------------------- /django_CCOS/django_CCOS/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/django_CCOS/urls.py -------------------------------------------------------------------------------- /django_CCOS/django_CCOS/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/django_CCOS/wsgi.py -------------------------------------------------------------------------------- /django_CCOS/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/manage.py -------------------------------------------------------------------------------- /django_CCOS/media/images/backimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/media/images/backimage.jpg -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.css -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/js/bootstrap.js -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /django_CCOS/static/bootstrap-3.3.7-dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/bootstrap-3.3.7-dist/js/npm.js -------------------------------------------------------------------------------- /django_CCOS/static/css/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/css/list.css -------------------------------------------------------------------------------- /django_CCOS/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/css/login.css -------------------------------------------------------------------------------- /django_CCOS/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/css/main.css -------------------------------------------------------------------------------- /django_CCOS/static/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/css/master.css -------------------------------------------------------------------------------- /django_CCOS/static/css/message_info.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/static/css/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/css/upload.css -------------------------------------------------------------------------------- /django_CCOS/static/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /django_CCOS/static/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/static/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /django_CCOS/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/base.html -------------------------------------------------------------------------------- /django_CCOS/templates/canteen/canteen_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/canteen/canteen_base.html -------------------------------------------------------------------------------- /django_CCOS/templates/canteen/canteen_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/canteen/canteen_list.html -------------------------------------------------------------------------------- /django_CCOS/templates/canteen/shop_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/canteen/shop_list.html -------------------------------------------------------------------------------- /django_CCOS/templates/customer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/customer/index.html -------------------------------------------------------------------------------- /django_CCOS/templates/customer/information.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/customer/information.html -------------------------------------------------------------------------------- /django_CCOS/templates/customer/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/customer/login.html -------------------------------------------------------------------------------- /django_CCOS/templates/customer/logout.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_CCOS/templates/customer/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/customer/register.html -------------------------------------------------------------------------------- /django_CCOS/templates/customer/show_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/customer/show_info.html -------------------------------------------------------------------------------- /django_CCOS/templates/dish/dish_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/dish/dish_base.html -------------------------------------------------------------------------------- /django_CCOS/templates/dish/dish_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/dish/dish_detail.html -------------------------------------------------------------------------------- /django_CCOS/templates/dish/dish_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/dish/dish_list.html -------------------------------------------------------------------------------- /django_CCOS/templates/dish/my_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/django_CCOS/templates/dish/my_order.html -------------------------------------------------------------------------------- /img/func1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/func1.png -------------------------------------------------------------------------------- /img/func2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/func2.png -------------------------------------------------------------------------------- /img/image-20211107210032459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/image-20211107210032459.png -------------------------------------------------------------------------------- /img/image-20211107210104324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/image-20211107210104324.png -------------------------------------------------------------------------------- /img/image-20211107210124156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/image-20211107210124156.png -------------------------------------------------------------------------------- /img/image-20211107210146836.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/image-20211107210146836.png -------------------------------------------------------------------------------- /img/image-20211107210220338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/image-20211107210220338.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewei2001/campus-canteen-ordering/HEAD/img/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==3.2.8 2 | PyMySQL==1.0.2 3 | --------------------------------------------------------------------------------