├── .gitignore ├── Procfile ├── core ├── __init__.py ├── admin.py ├── apps.py ├── decorators.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190808_0903.py │ ├── 0003_auto_20190809_1259.py │ ├── 0004_auto_20190812_1651.py │ ├── 0005_auto_20190812_1652.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_auto_20190806_1447.cpython-36.pyc │ │ ├── 0002_auto_20190808_0903.cpython-36.pyc │ │ ├── 0002_auto_20190808_0903.cpython-38.pyc │ │ ├── 0003_asset_assignedasset.cpython-36.pyc │ │ ├── 0003_auto_20190809_1259.cpython-36.pyc │ │ ├── 0003_auto_20190809_1259.cpython-38.pyc │ │ ├── 0004_auto_20190807_1218.cpython-36.pyc │ │ ├── 0004_auto_20190812_1651.cpython-36.pyc │ │ ├── 0004_auto_20190812_1651.cpython-38.pyc │ │ ├── 0005_auto_20190807_1227.cpython-36.pyc │ │ ├── 0005_auto_20190812_1652.cpython-36.pyc │ │ ├── 0005_auto_20190812_1652.cpython-38.pyc │ │ ├── 0006_auto_20190807_1416.cpython-36.pyc │ │ ├── 0007_auto_20190808_0903.cpython-36.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── static │ └── core │ │ ├── css │ │ ├── style.css │ │ └── style.css.map │ │ ├── js │ │ └── main.js │ │ └── sass │ │ ├── abstracts │ │ └── _variables.scss │ │ ├── base │ │ └── _typography.scss │ │ ├── components │ │ └── _btn.scss │ │ ├── main.scss │ │ └── pages │ │ ├── _base.scss │ │ └── _employees.scss ├── templates │ ├── core │ │ ├── _messages.html │ │ ├── base.html │ │ ├── employee │ │ │ ├── _handle_employee_profile_update_script.html │ │ │ ├── assigned_assets.html │ │ │ ├── dashboard.html │ │ │ ├── profile.html │ │ │ └── set_password.html │ │ ├── employer │ │ │ ├── _handle_asset_add_script.html │ │ │ ├── _handle_asset_assign_script.html │ │ │ ├── _handle_asset_reclaim_script.html │ │ │ ├── _handle_employee_add_script.html │ │ │ ├── _handle_employee_position_edit_script.html │ │ │ ├── _handle_employer_notifications_script.html │ │ │ ├── _handle_employer_profile_update_script.html │ │ │ ├── asset_add.html │ │ │ ├── asset_assign.html │ │ │ ├── asset_reclaim.html │ │ │ ├── assets.html │ │ │ ├── dashboard.html │ │ │ ├── employee_add.html │ │ │ ├── employee_position_edit.html │ │ │ ├── employees.html │ │ │ ├── notifications.html │ │ │ ├── profile.html │ │ │ └── signup.html │ │ └── home.html │ └── registration │ │ ├── account_activation_email.html │ │ └── login.html ├── tests.py ├── tokens.py ├── urls.py └── views.py ├── hrms ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── settings.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn hrms.wsgi 2 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/decorators.py -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_auto_20190808_0903.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/0002_auto_20190808_0903.py -------------------------------------------------------------------------------- /core/migrations/0003_auto_20190809_1259.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/0003_auto_20190809_1259.py -------------------------------------------------------------------------------- /core/migrations/0004_auto_20190812_1651.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/0004_auto_20190812_1651.py -------------------------------------------------------------------------------- /core/migrations/0005_auto_20190812_1652.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/0005_auto_20190812_1652.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0002_auto_20190806_1447.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0002_auto_20190806_1447.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0002_auto_20190808_0903.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0002_auto_20190808_0903.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0002_auto_20190808_0903.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0002_auto_20190808_0903.cpython-38.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0003_asset_assignedasset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0003_asset_assignedasset.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0003_auto_20190809_1259.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0003_auto_20190809_1259.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0003_auto_20190809_1259.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0003_auto_20190809_1259.cpython-38.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0004_auto_20190807_1218.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0004_auto_20190807_1218.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0004_auto_20190812_1651.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0004_auto_20190812_1651.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0004_auto_20190812_1651.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0004_auto_20190812_1651.cpython-38.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0005_auto_20190807_1227.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0005_auto_20190807_1227.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0005_auto_20190812_1652.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0005_auto_20190812_1652.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0005_auto_20190812_1652.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0005_auto_20190812_1652.cpython-38.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0006_auto_20190807_1416.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0006_auto_20190807_1416.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/0007_auto_20190808_0903.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/0007_auto_20190808_0903.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /core/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/models.py -------------------------------------------------------------------------------- /core/static/core/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/css/style.css -------------------------------------------------------------------------------- /core/static/core/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/css/style.css.map -------------------------------------------------------------------------------- /core/static/core/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/js/main.js -------------------------------------------------------------------------------- /core/static/core/sass/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/sass/abstracts/_variables.scss -------------------------------------------------------------------------------- /core/static/core/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/sass/base/_typography.scss -------------------------------------------------------------------------------- /core/static/core/sass/components/_btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/sass/components/_btn.scss -------------------------------------------------------------------------------- /core/static/core/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/sass/main.scss -------------------------------------------------------------------------------- /core/static/core/sass/pages/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/sass/pages/_base.scss -------------------------------------------------------------------------------- /core/static/core/sass/pages/_employees.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/static/core/sass/pages/_employees.scss -------------------------------------------------------------------------------- /core/templates/core/_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/_messages.html -------------------------------------------------------------------------------- /core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/base.html -------------------------------------------------------------------------------- /core/templates/core/employee/_handle_employee_profile_update_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employee/_handle_employee_profile_update_script.html -------------------------------------------------------------------------------- /core/templates/core/employee/assigned_assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employee/assigned_assets.html -------------------------------------------------------------------------------- /core/templates/core/employee/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employee/dashboard.html -------------------------------------------------------------------------------- /core/templates/core/employee/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employee/profile.html -------------------------------------------------------------------------------- /core/templates/core/employee/set_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employee/set_password.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_asset_add_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_asset_add_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_asset_assign_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_asset_assign_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_asset_reclaim_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_asset_reclaim_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_employee_add_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_employee_add_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_employee_position_edit_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_employee_position_edit_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_employer_notifications_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_employer_notifications_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/_handle_employer_profile_update_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/_handle_employer_profile_update_script.html -------------------------------------------------------------------------------- /core/templates/core/employer/asset_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/asset_add.html -------------------------------------------------------------------------------- /core/templates/core/employer/asset_assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/asset_assign.html -------------------------------------------------------------------------------- /core/templates/core/employer/asset_reclaim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/asset_reclaim.html -------------------------------------------------------------------------------- /core/templates/core/employer/assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/assets.html -------------------------------------------------------------------------------- /core/templates/core/employer/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/dashboard.html -------------------------------------------------------------------------------- /core/templates/core/employer/employee_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/employee_add.html -------------------------------------------------------------------------------- /core/templates/core/employer/employee_position_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/employee_position_edit.html -------------------------------------------------------------------------------- /core/templates/core/employer/employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/employees.html -------------------------------------------------------------------------------- /core/templates/core/employer/notifications.html: -------------------------------------------------------------------------------- 1 |
2 | The Employer Notifications Page. 3 |
-------------------------------------------------------------------------------- /core/templates/core/employer/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/profile.html -------------------------------------------------------------------------------- /core/templates/core/employer/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/employer/signup.html -------------------------------------------------------------------------------- /core/templates/core/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/core/home.html -------------------------------------------------------------------------------- /core/templates/registration/account_activation_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/registration/account_activation_email.html -------------------------------------------------------------------------------- /core/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/templates/registration/login.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/tokens.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/core/views.py -------------------------------------------------------------------------------- /hrms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hrms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/hrms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /hrms/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/hrms/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /hrms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/hrms/settings.py -------------------------------------------------------------------------------- /hrms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/hrms/urls.py -------------------------------------------------------------------------------- /hrms/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/hrms/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/manage.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Felix-Mutinda/django-hrms/HEAD/requirements.txt --------------------------------------------------------------------------------