├── .gitignore ├── Deployment ├── apache-site.conf └── ems_gunicorn_service ├── Dockerfile ├── Dockerrun.aws.json ├── READEME.md ├── _config.yml ├── app.json ├── employee ├── __init__.py ├── admin.py ├── api_urls.py ├── apps.py ├── forms.py ├── middlewares.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180415_0554.py │ ├── 0003_profile_picture.py │ ├── 0004_employee.py │ ├── 0005_auto_20180906_1552.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── ems ├── .project ├── __init__.py ├── decorators.py ├── settings.py ├── static │ └── css │ │ └── custom.css ├── templates │ ├── auth │ │ ├── login.html │ │ ├── profile.html │ │ ├── profile_update.html │ │ └── success.html │ ├── base.html │ ├── employee │ │ ├── add.html │ │ ├── delete.html │ │ ├── details.html │ │ ├── edit.html │ │ └── index.html │ ├── header.html │ └── polls │ │ ├── details.html │ │ ├── edit_poll.html │ │ ├── index.html │ │ ├── new_poll.html │ │ └── poll.html ├── urls.py └── wsgi.py ├── manage.py ├── poll ├── __init__.py ├── admin.py ├── api_urls.py ├── api_views.py ├── apps.py ├── context_processors.py ├── documents.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180203_1058.py │ ├── 0003_auto_20180206_2134.py │ ├── 0004_auto_20180212_1627.py │ ├── 0005_auto_20180214_2152.py │ ├── 0006_auto_20180415_1140.py │ ├── 0007_auto_20180705_1601.py │ ├── 0008_auto_20180909_0514.py │ ├── 0009_auto_20181002_1544.py │ └── __init__.py ├── models.py ├── serializers.py ├── templatetags │ ├── __init__.py │ └── poll_extras.py ├── tests.py ├── urls.py └── views.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/.gitignore -------------------------------------------------------------------------------- /Deployment/apache-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/Deployment/apache-site.conf -------------------------------------------------------------------------------- /Deployment/ems_gunicorn_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/Deployment/ems_gunicorn_service -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/Dockerrun.aws.json -------------------------------------------------------------------------------- /READEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/READEME.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/app.json -------------------------------------------------------------------------------- /employee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employee/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/admin.py -------------------------------------------------------------------------------- /employee/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/api_urls.py -------------------------------------------------------------------------------- /employee/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/apps.py -------------------------------------------------------------------------------- /employee/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/forms.py -------------------------------------------------------------------------------- /employee/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/middlewares.py -------------------------------------------------------------------------------- /employee/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/migrations/0001_initial.py -------------------------------------------------------------------------------- /employee/migrations/0002_auto_20180415_0554.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/migrations/0002_auto_20180415_0554.py -------------------------------------------------------------------------------- /employee/migrations/0003_profile_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/migrations/0003_profile_picture.py -------------------------------------------------------------------------------- /employee/migrations/0004_employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/migrations/0004_employee.py -------------------------------------------------------------------------------- /employee/migrations/0005_auto_20180906_1552.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/migrations/0005_auto_20180906_1552.py -------------------------------------------------------------------------------- /employee/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employee/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/models.py -------------------------------------------------------------------------------- /employee/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/serializers.py -------------------------------------------------------------------------------- /employee/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/tests.py -------------------------------------------------------------------------------- /employee/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/urls.py -------------------------------------------------------------------------------- /employee/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/employee/views.py -------------------------------------------------------------------------------- /ems/.project: -------------------------------------------------------------------------------- 1 | /home/hardik-p/projects/mine/ems 2 | -------------------------------------------------------------------------------- /ems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ems/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/decorators.py -------------------------------------------------------------------------------- /ems/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/settings.py -------------------------------------------------------------------------------- /ems/static/css/custom.css: -------------------------------------------------------------------------------- 1 | .brand-logo { 2 | position: relative !important; 3 | } -------------------------------------------------------------------------------- /ems/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/auth/login.html -------------------------------------------------------------------------------- /ems/templates/auth/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/auth/profile.html -------------------------------------------------------------------------------- /ems/templates/auth/profile_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/auth/profile_update.html -------------------------------------------------------------------------------- /ems/templates/auth/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/auth/success.html -------------------------------------------------------------------------------- /ems/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/base.html -------------------------------------------------------------------------------- /ems/templates/employee/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/employee/add.html -------------------------------------------------------------------------------- /ems/templates/employee/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/employee/delete.html -------------------------------------------------------------------------------- /ems/templates/employee/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/employee/details.html -------------------------------------------------------------------------------- /ems/templates/employee/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/employee/edit.html -------------------------------------------------------------------------------- /ems/templates/employee/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/employee/index.html -------------------------------------------------------------------------------- /ems/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/header.html -------------------------------------------------------------------------------- /ems/templates/polls/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/polls/details.html -------------------------------------------------------------------------------- /ems/templates/polls/edit_poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/polls/edit_poll.html -------------------------------------------------------------------------------- /ems/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/polls/index.html -------------------------------------------------------------------------------- /ems/templates/polls/new_poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/polls/new_poll.html -------------------------------------------------------------------------------- /ems/templates/polls/poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/templates/polls/poll.html -------------------------------------------------------------------------------- /ems/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/urls.py -------------------------------------------------------------------------------- /ems/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/ems/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/manage.py -------------------------------------------------------------------------------- /poll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poll/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/admin.py -------------------------------------------------------------------------------- /poll/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/api_urls.py -------------------------------------------------------------------------------- /poll/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/api_views.py -------------------------------------------------------------------------------- /poll/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/apps.py -------------------------------------------------------------------------------- /poll/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/context_processors.py -------------------------------------------------------------------------------- /poll/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/documents.py -------------------------------------------------------------------------------- /poll/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/forms.py -------------------------------------------------------------------------------- /poll/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0001_initial.py -------------------------------------------------------------------------------- /poll/migrations/0002_auto_20180203_1058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0002_auto_20180203_1058.py -------------------------------------------------------------------------------- /poll/migrations/0003_auto_20180206_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0003_auto_20180206_2134.py -------------------------------------------------------------------------------- /poll/migrations/0004_auto_20180212_1627.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0004_auto_20180212_1627.py -------------------------------------------------------------------------------- /poll/migrations/0005_auto_20180214_2152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0005_auto_20180214_2152.py -------------------------------------------------------------------------------- /poll/migrations/0006_auto_20180415_1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0006_auto_20180415_1140.py -------------------------------------------------------------------------------- /poll/migrations/0007_auto_20180705_1601.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0007_auto_20180705_1601.py -------------------------------------------------------------------------------- /poll/migrations/0008_auto_20180909_0514.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0008_auto_20180909_0514.py -------------------------------------------------------------------------------- /poll/migrations/0009_auto_20181002_1544.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/migrations/0009_auto_20181002_1544.py -------------------------------------------------------------------------------- /poll/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poll/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/models.py -------------------------------------------------------------------------------- /poll/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/serializers.py -------------------------------------------------------------------------------- /poll/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poll/templatetags/poll_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/templatetags/poll_extras.py -------------------------------------------------------------------------------- /poll/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/tests.py -------------------------------------------------------------------------------- /poll/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/urls.py -------------------------------------------------------------------------------- /poll/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/poll/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarav-tech/ems/HEAD/requirements.txt --------------------------------------------------------------------------------