├── .gitignore ├── Procfile ├── README.md ├── _config.yml ├── ems ├── __init__.py ├── secrets.py ├── secrets.py.template ├── settings.py ├── urls.py └── wsgi.py ├── main ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161116_2058.py │ ├── 0003_auto_20161116_1959.py │ ├── 0004_auto_20161117_0757.py │ ├── 0005_auto_20161122_0306.py │ └── __init__.py ├── models.py ├── static │ ├── css │ │ ├── login.css │ │ ├── material.min.css │ │ └── styles.css │ ├── fonts │ │ ├── MaterialIcons-Regular.woff2 │ │ └── material-icons.css │ ├── images │ │ ├── android-desktop.png │ │ ├── favicon.png │ │ ├── ios-desktop.png │ │ └── user.png │ └── js │ │ └── material.min.js ├── templates │ └── main │ │ ├── attendance │ │ ├── form.html │ │ └── table.html │ │ ├── base.html │ │ ├── details │ │ ├── form.html │ │ ├── profile.html │ │ ├── table.html │ │ └── view_profile.html │ │ ├── login.html │ │ ├── notifications.html │ │ ├── results │ │ ├── form.html │ │ └── table.html │ │ └── schedule.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn ems.wsgi 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/_config.yml -------------------------------------------------------------------------------- /ems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ems/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/ems/secrets.py -------------------------------------------------------------------------------- /ems/secrets.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/ems/secrets.py.template -------------------------------------------------------------------------------- /ems/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/ems/settings.py -------------------------------------------------------------------------------- /ems/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/ems/urls.py -------------------------------------------------------------------------------- /ems/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/ems/wsgi.py -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/admin.py -------------------------------------------------------------------------------- /main/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/apps.py -------------------------------------------------------------------------------- /main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/forms.py -------------------------------------------------------------------------------- /main/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/migrations/0001_initial.py -------------------------------------------------------------------------------- /main/migrations/0002_auto_20161116_2058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/migrations/0002_auto_20161116_2058.py -------------------------------------------------------------------------------- /main/migrations/0003_auto_20161116_1959.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/migrations/0003_auto_20161116_1959.py -------------------------------------------------------------------------------- /main/migrations/0004_auto_20161117_0757.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/migrations/0004_auto_20161117_0757.py -------------------------------------------------------------------------------- /main/migrations/0005_auto_20161122_0306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/migrations/0005_auto_20161122_0306.py -------------------------------------------------------------------------------- /main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/models.py -------------------------------------------------------------------------------- /main/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/css/login.css -------------------------------------------------------------------------------- /main/static/css/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/css/material.min.css -------------------------------------------------------------------------------- /main/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/css/styles.css -------------------------------------------------------------------------------- /main/static/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /main/static/fonts/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/fonts/material-icons.css -------------------------------------------------------------------------------- /main/static/images/android-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/images/android-desktop.png -------------------------------------------------------------------------------- /main/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/images/favicon.png -------------------------------------------------------------------------------- /main/static/images/ios-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/images/ios-desktop.png -------------------------------------------------------------------------------- /main/static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/images/user.png -------------------------------------------------------------------------------- /main/static/js/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/static/js/material.min.js -------------------------------------------------------------------------------- /main/templates/main/attendance/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/attendance/form.html -------------------------------------------------------------------------------- /main/templates/main/attendance/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/attendance/table.html -------------------------------------------------------------------------------- /main/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/base.html -------------------------------------------------------------------------------- /main/templates/main/details/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/details/form.html -------------------------------------------------------------------------------- /main/templates/main/details/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/details/profile.html -------------------------------------------------------------------------------- /main/templates/main/details/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/details/table.html -------------------------------------------------------------------------------- /main/templates/main/details/view_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/details/view_profile.html -------------------------------------------------------------------------------- /main/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/login.html -------------------------------------------------------------------------------- /main/templates/main/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/notifications.html -------------------------------------------------------------------------------- /main/templates/main/results/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/results/form.html -------------------------------------------------------------------------------- /main/templates/main/results/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/results/table.html -------------------------------------------------------------------------------- /main/templates/main/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/templates/main/schedule.html -------------------------------------------------------------------------------- /main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/tests.py -------------------------------------------------------------------------------- /main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/urls.py -------------------------------------------------------------------------------- /main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/main/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faheel/EMS/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.5.2 2 | --------------------------------------------------------------------------------