Skip to content

Latest commit

 

History

History
64 lines (46 loc) · 1.7 KB

File metadata and controls

64 lines (46 loc) · 1.7 KB

University attendance and departure system

Create QR Code using (Python/Django), and use this codes for university attendance and departure system

Qr Code Home

How it work(professor side)

before every lecture for every professor

  1. professor create QR code for attendance and departure
  2. the worker print this qr code and paste on for example lecture room door (also will display in site)

Professor_side

How it work(student side)

  1. student will scann QR Code by his phone
  2. qr code will take him to register form
  3. student will submit by name and id
  4. he will display in students table for this lecture

student_side

How to install on Windows

  1. clone this project
  2. install virtualenv
pip install virtualenv
  1. create new virtual environment
py -m venv venv
  1. activate the new virtual
.\venv\Scripts\activate
  1. install requirements.txt
pip install -r requirements.txt
  1. run local server to begin
py manage.py runserver
  1. go live with localhost:8000

To install on Unix/macOS see this document

Access admin panel

  1. run on trimnal
py manage.py createsuperuser
  1. create new admin user
  2. go to localhost:8000/admin

Enjoy^^