基本信息
源码名称:Django做学生考勤管理系统
源码大小:1.61M
文件格式:.rar
开发语言:Python
更新时间:2021-11-30
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 3 元×
微信扫码支付:3 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
Django做学生考勤管理系统
.
└── django 学生迟到-晚归记录操作excel
└── project
├── manage.py
├── media
│ ├── 32.xlsx
│ └── ok.xls
├── project
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ ├── __init__.cpython-39.pyc
│ │ ├── settings.cpython-37.pyc
│ │ ├── settings.cpython-39.pyc
│ │ ├── urls.cpython-37.pyc
│ │ ├── urls.cpython-39.pyc
│ │ ├── wsgi.cpython-37.pyc
│ │ └── wsgi.cpython-39.pyc
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── static
│ ├── css
│ │ ├── iconfont.css
│ │ ├── index.css
│ │ ├── login.css
│ │ └── reset.css
│ ├── fonts
│ │ ├── iconfont.eot
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ ├── iconfont.woff
│ │ └── iconfont.woff2
│ ├── images
│ │ ├── 0.jpg
│ │ ├── 1.jpg
│ │ ├── 11.jpg
│ │ ├── 2.jpg
│ │ ├── Thumbs.db
│ │ ├── bg.jpg
│ │ ├── captcha.jpg
│ │ ├── copy_rignt_24.png
│ │ ├── logo.jpg
│ │ ├── logo.png
│ │ ├── productimg.jpg
│ │ └── user.jpg
│ ├── js
│ │ ├── Validform_v5.3.2.js
│ │ ├── Validform_v5.3.2_min.js
│ │ ├── f.js
│ │ ├── jQuery1.7.js
│ │ ├── jquery-1.8.2.min.js
│ │ ├── jquery-1.9.1.min.js
│ │ ├── jquery.SuperSlide.js
│ │ └── jquery1.42.min.js
│ └── media
│ ├── image1.jpeg
│ ├── image2.jpeg
│ ├── image3.jpeg
│ └── image3.png
├── templates
│ ├── OrderManagement.html
│ ├── ProductManagement.html
│ ├── UserManagement.html
│ ├── admin_manage.html
│ ├── ccy_manage.html
│ ├── classificationManagement.html
│ └── login.html
└── web
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-37.pyc
│ ├── __init__.cpython-39.pyc
│ ├── admin.cpython-37.pyc
│ ├── admin.cpython-39.pyc
│ ├── apps.cpython-37.pyc
│ ├── apps.cpython-39.pyc
│ ├── config.cpython-37.pyc
│ ├── config.cpython-39.pyc
│ ├── models.cpython-37.pyc
│ ├── models.cpython-39.pyc
│ ├── views.cpython-37.pyc
│ └── views.cpython-39.pyc
├── admin.py
├── apps.py
├── config.py
├── migrations
│ ├── 0001_initial.py
│ ├── __init__.py
│ └── __pycache__
│ ├── 0001_initial.cpython-37.pyc
│ ├── 0001_initial.cpython-39.pyc
│ ├── __init__.cpython-37.pyc
│ └── __init__.cpython-39.pyc
├── models.py
├── ok.xls
├── tests.py
└── views.py
16 directories, 82 files
Django做学生考勤管理系统
.
└── django 学生迟到-晚归记录操作excel
└── project
├── manage.py
├── media
│ ├── 32.xlsx
│ └── ok.xls
├── project
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ ├── __init__.cpython-39.pyc
│ │ ├── settings.cpython-37.pyc
│ │ ├── settings.cpython-39.pyc
│ │ ├── urls.cpython-37.pyc
│ │ ├── urls.cpython-39.pyc
│ │ ├── wsgi.cpython-37.pyc
│ │ └── wsgi.cpython-39.pyc
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── static
│ ├── css
│ │ ├── iconfont.css
│ │ ├── index.css
│ │ ├── login.css
│ │ └── reset.css
│ ├── fonts
│ │ ├── iconfont.eot
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ ├── iconfont.woff
│ │ └── iconfont.woff2
│ ├── images
│ │ ├── 0.jpg
│ │ ├── 1.jpg
│ │ ├── 11.jpg
│ │ ├── 2.jpg
│ │ ├── Thumbs.db
│ │ ├── bg.jpg
│ │ ├── captcha.jpg
│ │ ├── copy_rignt_24.png
│ │ ├── logo.jpg
│ │ ├── logo.png
│ │ ├── productimg.jpg
│ │ └── user.jpg
│ ├── js
│ │ ├── Validform_v5.3.2.js
│ │ ├── Validform_v5.3.2_min.js
│ │ ├── f.js
│ │ ├── jQuery1.7.js
│ │ ├── jquery-1.8.2.min.js
│ │ ├── jquery-1.9.1.min.js
│ │ ├── jquery.SuperSlide.js
│ │ └── jquery1.42.min.js
│ └── media
│ ├── image1.jpeg
│ ├── image2.jpeg
│ ├── image3.jpeg
│ └── image3.png
├── templates
│ ├── OrderManagement.html
│ ├── ProductManagement.html
│ ├── UserManagement.html
│ ├── admin_manage.html
│ ├── ccy_manage.html
│ ├── classificationManagement.html
│ └── login.html
└── web
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-37.pyc
│ ├── __init__.cpython-39.pyc
│ ├── admin.cpython-37.pyc
│ ├── admin.cpython-39.pyc
│ ├── apps.cpython-37.pyc
│ ├── apps.cpython-39.pyc
│ ├── config.cpython-37.pyc
│ ├── config.cpython-39.pyc
│ ├── models.cpython-37.pyc
│ ├── models.cpython-39.pyc
│ ├── views.cpython-37.pyc
│ └── views.cpython-39.pyc
├── admin.py
├── apps.py
├── config.py
├── migrations
│ ├── 0001_initial.py
│ ├── __init__.py
│ └── __pycache__
│ ├── 0001_initial.cpython-37.pyc
│ ├── 0001_initial.cpython-39.pyc
│ ├── __init__.cpython-37.pyc
│ └── __init__.cpython-39.pyc
├── models.py
├── ok.xls
├── tests.py
└── views.py
16 directories, 82 files