├── .gitignore ├── Dockerfile ├── README.md ├── auto_exit.py ├── clear.py ├── clear_invalid.py ├── clear_prefix.py ├── enter ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── functions.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_student.py │ ├── 0003_auto_20230127_0216.py │ ├── 0004_alter_record_entrytime.py │ ├── 0005_auto_20230127_0334.py │ ├── 0006_student.py │ └── __init__.py ├── models.py ├── reader.py ├── static │ ├── favicon.ico │ ├── favicon.png │ ├── script.js │ ├── style.css │ └── toggle.js ├── templates │ ├── allrecords.html │ ├── base.html │ ├── current.html │ ├── library.html │ ├── records.html │ ├── records_form.html │ ├── records_formcsv.html │ ├── records_month.html │ ├── records_month_form.html │ ├── records_month_formcsv.html │ ├── records_today.html │ ├── shifts.html │ └── statistics.html ├── tests.py └── views.py ├── entryexit ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── process.py ├── reader.py ├── requirements.txt ├── screenshots ├── U5.png ├── current_records.png ├── entry_success.png ├── exit_success.png ├── failed_read.png ├── homepage.png ├── records_today.png └── view_records.png ├── server.sh ├── status_in.csv ├── status_in.py ├── status_in_duplicates.csv └── update_exit.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/README.md -------------------------------------------------------------------------------- /auto_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/auto_exit.py -------------------------------------------------------------------------------- /clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/clear.py -------------------------------------------------------------------------------- /clear_invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/clear_invalid.py -------------------------------------------------------------------------------- /clear_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/clear_prefix.py -------------------------------------------------------------------------------- /enter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/admin.py -------------------------------------------------------------------------------- /enter/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/apps.py -------------------------------------------------------------------------------- /enter/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/forms.py -------------------------------------------------------------------------------- /enter/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/functions.py -------------------------------------------------------------------------------- /enter/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/migrations/0001_initial.py -------------------------------------------------------------------------------- /enter/migrations/0002_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/migrations/0002_student.py -------------------------------------------------------------------------------- /enter/migrations/0003_auto_20230127_0216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/migrations/0003_auto_20230127_0216.py -------------------------------------------------------------------------------- /enter/migrations/0004_alter_record_entrytime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/migrations/0004_alter_record_entrytime.py -------------------------------------------------------------------------------- /enter/migrations/0005_auto_20230127_0334.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/migrations/0005_auto_20230127_0334.py -------------------------------------------------------------------------------- /enter/migrations/0006_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/migrations/0006_student.py -------------------------------------------------------------------------------- /enter/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/models.py -------------------------------------------------------------------------------- /enter/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/reader.py -------------------------------------------------------------------------------- /enter/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/static/favicon.ico -------------------------------------------------------------------------------- /enter/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/static/favicon.png -------------------------------------------------------------------------------- /enter/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/static/script.js -------------------------------------------------------------------------------- /enter/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/static/style.css -------------------------------------------------------------------------------- /enter/static/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/static/toggle.js -------------------------------------------------------------------------------- /enter/templates/allrecords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/allrecords.html -------------------------------------------------------------------------------- /enter/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/base.html -------------------------------------------------------------------------------- /enter/templates/current.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/current.html -------------------------------------------------------------------------------- /enter/templates/library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/library.html -------------------------------------------------------------------------------- /enter/templates/records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records.html -------------------------------------------------------------------------------- /enter/templates/records_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records_form.html -------------------------------------------------------------------------------- /enter/templates/records_formcsv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records_formcsv.html -------------------------------------------------------------------------------- /enter/templates/records_month.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records_month.html -------------------------------------------------------------------------------- /enter/templates/records_month_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records_month_form.html -------------------------------------------------------------------------------- /enter/templates/records_month_formcsv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records_month_formcsv.html -------------------------------------------------------------------------------- /enter/templates/records_today.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/records_today.html -------------------------------------------------------------------------------- /enter/templates/shifts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/shifts.html -------------------------------------------------------------------------------- /enter/templates/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/templates/statistics.html -------------------------------------------------------------------------------- /enter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/tests.py -------------------------------------------------------------------------------- /enter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/enter/views.py -------------------------------------------------------------------------------- /entryexit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entryexit/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/entryexit/asgi.py -------------------------------------------------------------------------------- /entryexit/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/entryexit/settings.py -------------------------------------------------------------------------------- /entryexit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/entryexit/urls.py -------------------------------------------------------------------------------- /entryexit/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/entryexit/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/manage.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/process.py -------------------------------------------------------------------------------- /reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/reader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/U5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/U5.png -------------------------------------------------------------------------------- /screenshots/current_records.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/current_records.png -------------------------------------------------------------------------------- /screenshots/entry_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/entry_success.png -------------------------------------------------------------------------------- /screenshots/exit_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/exit_success.png -------------------------------------------------------------------------------- /screenshots/failed_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/failed_read.png -------------------------------------------------------------------------------- /screenshots/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/homepage.png -------------------------------------------------------------------------------- /screenshots/records_today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/records_today.png -------------------------------------------------------------------------------- /screenshots/view_records.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/screenshots/view_records.png -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/server.sh -------------------------------------------------------------------------------- /status_in.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/status_in.csv -------------------------------------------------------------------------------- /status_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/status_in.py -------------------------------------------------------------------------------- /status_in_duplicates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/status_in_duplicates.csv -------------------------------------------------------------------------------- /update_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfthabEK/Entry-Exit-DL/HEAD/update_exit.py --------------------------------------------------------------------------------