├── EMS.gif ├── README.md ├── db.sqlite3 ├── emp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── myapp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── settings.cpython-310.pyc │ ├── urls.cpython-310.pyc │ ├── views.cpython-310.pyc │ └── wsgi.cpython-310.pyc ├── asgi.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py └── templates ├── about.html ├── emp ├── add_emp.html ├── home.html ├── navbar.html └── update_emp.html ├── home.html ├── navbar.html └── services.html /EMS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/EMS.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /emp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emp/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /emp/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /emp/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /emp/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /emp/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /emp/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /emp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/admin.py -------------------------------------------------------------------------------- /emp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/apps.py -------------------------------------------------------------------------------- /emp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/migrations/0001_initial.py -------------------------------------------------------------------------------- /emp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emp/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /emp/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /emp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/models.py -------------------------------------------------------------------------------- /emp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/tests.py -------------------------------------------------------------------------------- /emp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/urls.py -------------------------------------------------------------------------------- /emp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/emp/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/manage.py -------------------------------------------------------------------------------- /myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /myapp/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/asgi.py -------------------------------------------------------------------------------- /myapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/settings.py -------------------------------------------------------------------------------- /myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/urls.py -------------------------------------------------------------------------------- /myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/views.py -------------------------------------------------------------------------------- /myapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/myapp/wsgi.py -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/emp/add_emp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/emp/add_emp.html -------------------------------------------------------------------------------- /templates/emp/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/emp/home.html -------------------------------------------------------------------------------- /templates/emp/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/emp/navbar.html -------------------------------------------------------------------------------- /templates/emp/update_emp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/emp/update_emp.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shobhit1338/Employee-Management-System/HEAD/templates/services.html --------------------------------------------------------------------------------