├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE │ └── pull_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── branding ├── README.md ├── institute │ └── .gitignore ├── maintainers │ ├── favicon.ico │ ├── logo.png │ ├── logo.svg │ └── wordmark.svg └── site │ ├── favicon.ico │ ├── logo.svg │ ├── logo_192.png │ ├── logo_512.png │ ├── logo_apple.png │ └── wordmark.svg ├── certificates └── .gitignore ├── configuration ├── .gitignore ├── README.md ├── base_stencil.yml └── sites │ └── site_stencil.yml ├── history_dir └── .gitignore ├── media_files └── .gitignore ├── network_storage ├── .gitignore ├── protected │ └── .gitignore └── public │ └── .gitignore ├── omniport ├── .gitignore ├── README.md ├── apps │ └── README.md ├── core │ ├── README.md │ ├── base_auth │ │ ├── __init__.py │ │ ├── admin │ │ │ ├── __init__.py │ │ │ └── models │ │ │ │ ├── __init__.py │ │ │ │ └── user.py │ │ ├── apps.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ └── generalised.py │ │ ├── http_urls.py │ │ ├── managers │ │ │ ├── __init__.py │ │ │ ├── get_user.py │ │ │ └── user.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_user_institute_security_key.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── user.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── reset_password.py │ │ │ ├── retrieve_user.py │ │ │ └── verify_secret_answer.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── recover_passowrd.py │ │ │ ├── reset_password.py │ │ │ ├── retrieve_institute_security_key.py │ │ │ ├── verify_institute_security_key.py │ │ │ └── verify_secret_answer.py │ ├── bootstrap │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── http_urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ └── branding.py │ ├── configuration │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── acceptables.py │ │ │ │ ├── app.py │ │ │ │ ├── assets.py │ │ │ │ ├── base_urls.py │ │ │ │ ├── categorisation.py │ │ │ │ └── nomenclature.py │ │ │ └── project │ │ │ │ ├── __init__.py │ │ │ │ ├── allowances.py │ │ │ │ ├── branding.py │ │ │ │ ├── emails.py │ │ │ │ ├── i18n.py │ │ │ │ ├── imagery.py │ │ │ │ ├── ip_address_ring.py │ │ │ │ ├── nomenclature.py │ │ │ │ ├── project.py │ │ │ │ ├── secrets.py │ │ │ │ ├── services.py │ │ │ │ ├── site.py │ │ │ │ └── text.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── app.py │ │ │ │ ├── assets.py │ │ │ │ ├── base_urls.py │ │ │ │ └── nomenclature.py │ │ │ └── project │ │ │ │ ├── __init__.py │ │ │ │ ├── branding.py │ │ │ │ ├── imagery.py │ │ │ │ ├── nomenclature.py │ │ │ │ ├── site.py │ │ │ │ └── text.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── app_config_class.py │ │ │ └── file_search.py │ ├── discovery │ │ ├── __init__.py │ │ ├── available.py │ │ └── discovery.py │ ├── guest_auth │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── http_urls.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── utils │ │ │ └── create_guest.py │ │ └── views │ │ │ ├── login.py │ │ │ └── logout.py │ ├── kernel │ │ ├── __init__.py │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ └── model_admins │ │ │ │ ├── __init__.py │ │ │ │ ├── branch.py │ │ │ │ ├── faculty_member.py │ │ │ │ ├── person.py │ │ │ │ └── student.py │ │ ├── apps.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ ├── biological_information.py │ │ │ └── graduations.py │ │ ├── http_urls.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── collectdaemon.py │ │ ├── managers │ │ │ ├── __init__.py │ │ │ └── get_role.py │ │ ├── migrations │ │ │ ├── 0001_models.py │ │ │ ├── 0002_relationships.py │ │ │ ├── 0003_auto_20191104_0141.py │ │ │ ├── 0004_auto_20200110_1751.py │ │ │ ├── 0004_guest.py │ │ │ ├── 0005_auto_20200110_2246.py │ │ │ ├── 0006_merge_20200111_1752.py │ │ │ ├── 0007_jointfaculty_jointfacultymembership.py │ │ │ ├── 0008_auto_20220206_2015.py │ │ │ ├── 0009_branch_year_count_alter_person_spouses.py │ │ │ ├── 0010_nonteachingstaff.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── institute │ │ │ │ ├── __init__.py │ │ │ │ ├── branch.py │ │ │ │ ├── centre.py │ │ │ │ ├── course.py │ │ │ │ ├── degree.py │ │ │ │ ├── department.py │ │ │ │ └── residence.py │ │ │ ├── person.py │ │ │ ├── personal_information │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── biological_information.py │ │ │ │ ├── financial_information.py │ │ │ │ ├── political_information.py │ │ │ │ └── residential_information.py │ │ │ └── roles │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── faculty_member.py │ │ │ │ ├── guest_role.py │ │ │ │ ├── joint_faculty.py │ │ │ │ ├── maintainer.py │ │ │ │ ├── nonteaching_staff.py │ │ │ │ └── student.py │ │ ├── permissions │ │ │ ├── __init__.py │ │ │ ├── alohomora.py │ │ │ ├── has_role.py │ │ │ ├── helpcentre.py │ │ │ ├── omnipotence.py │ │ │ └── polyjuice.py │ │ ├── relations │ │ │ ├── __init__.py │ │ │ └── person.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── institute │ │ │ │ ├── branch.py │ │ │ │ ├── degree.py │ │ │ │ ├── department.py │ │ │ │ └── residence.py │ │ │ ├── person.py │ │ │ ├── personal_information │ │ │ │ ├── __init__.py │ │ │ │ ├── biological_information.py │ │ │ │ ├── financial_information.py │ │ │ │ ├── political_information.py │ │ │ │ └── residential_information.py │ │ │ ├── registration.py │ │ │ └── roles │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── faculty_member.py │ │ │ │ ├── guest.py │ │ │ │ ├── joint_faculty.py │ │ │ │ ├── maintainer.py │ │ │ │ └── student.py │ │ ├── supervisor.d │ │ │ ├── .gitignore │ │ │ └── celery.conf │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── logs.py │ │ │ └── rights.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── rights.py │ │ │ └── who_am_i.py │ ├── open_auth │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ └── data_points.py │ │ ├── http_urls.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20211016_0005.py │ │ │ ├── 0003_alter_application_data_points.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── application.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ └── application.py │ │ ├── signals │ │ │ ├── __init__.py │ │ │ └── app_authorisation.py │ │ ├── utils.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── application.py │ │ │ └── retrieve_data.py │ ├── session_auth │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── constants │ │ │ ├── __init__.py │ │ │ └── device_types.py │ │ ├── http_urls.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_sessionmap_user_agent.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── session_map.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ └── login.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── ip_address.py │ │ │ └── user_agent.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── illustration_roulette.py │ │ │ ├── login.py │ │ │ └── logout.py │ ├── token_auth │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── authentication │ │ │ ├── __init__.py │ │ │ └── app_access_token_authentication.py │ │ ├── constants.py │ │ ├── http_urls.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── app_access_token.py │ │ ├── permission │ │ │ ├── __init__.py │ │ │ └── app_access_token.py │ │ └── views.py │ └── utils │ │ ├── __init__.py │ │ ├── logs.py │ │ └── slack.py ├── manage.py ├── omniport │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ └── site.py │ ├── asgi │ │ ├── __init__.py │ │ └── asgi.py │ ├── celery │ │ ├── __init__.py │ │ └── celery.py │ ├── context │ │ ├── __init__.py │ │ └── branding.py │ ├── middleware │ │ ├── __init__.py │ │ ├── drf_auth.py │ │ ├── ip_address_rings.py │ │ ├── last_seen.py │ │ ├── person_roles.py │ │ ├── routes_control.py │ │ └── routes_control_roles.py │ ├── routing │ │ ├── __init__.py │ │ └── routing.py │ ├── settings │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── applications.py │ │ │ ├── authentication.py │ │ │ ├── directories.py │ │ │ ├── discovery.py │ │ │ ├── files.py │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── security.py │ │ │ ├── shell.py │ │ │ └── templates.py │ │ ├── configuration │ │ │ ├── __init__.py │ │ │ ├── allowances.py │ │ │ ├── base.py │ │ │ ├── branding.py │ │ │ ├── emails.py │ │ │ ├── i18n.py │ │ │ ├── integrations.py │ │ │ ├── logging.py │ │ │ ├── secrets.py │ │ │ ├── services.py │ │ │ └── site.py │ │ ├── settings.py │ │ └── third_party │ │ │ ├── __init__.py │ │ │ ├── celery.py │ │ │ ├── cors.py │ │ │ ├── drf.py │ │ │ ├── guardian.py │ │ │ ├── jwt.py │ │ │ ├── mptt.py │ │ │ └── tinymce.py │ ├── static │ │ ├── @fullcalendar │ │ │ ├── common.main.css │ │ │ ├── daygrid.main.css │ │ │ ├── list.main.css │ │ │ ├── semantic.fullCalendar.css │ │ │ └── timegrid.main.css │ │ ├── errors │ │ │ ├── confetti_green.svg │ │ │ ├── confetti_pink.svg │ │ │ ├── confetti_yellow.svg │ │ │ ├── dart.svg │ │ │ ├── dart_stuck.svg │ │ │ ├── dartboard.svg │ │ │ ├── person.svg │ │ │ ├── person_stressed.svg │ │ │ └── rabbit.svg │ │ ├── illustrations │ │ │ ├── 0.svg │ │ │ ├── 1.svg │ │ │ ├── 2.svg │ │ │ ├── 3.svg │ │ │ └── 4.svg │ │ ├── jquery │ │ │ └── jquery.min.js │ │ ├── omniport │ │ │ └── css │ │ │ │ ├── layout.css │ │ │ │ └── styling.css │ │ ├── pure-react-carousel │ │ │ ├── react-carousel.es.css │ │ │ └── react-carousel.es.css.map │ │ ├── react-semantic-toasts │ │ │ └── react-semantic-alert.css │ │ └── semantic-ui │ │ │ ├── semantic.fix.css │ │ │ ├── semantic.min.css │ │ │ ├── semantic.min.js │ │ │ └── themes │ │ │ └── default │ │ │ └── assets │ │ │ ├── fonts │ │ │ ├── brand-icons.eot │ │ │ ├── brand-icons.svg │ │ │ ├── brand-icons.ttf │ │ │ ├── brand-icons.woff │ │ │ ├── brand-icons.woff2 │ │ │ ├── icons.eot │ │ │ ├── icons.otf │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ ├── icons.woff2 │ │ │ ├── outline-icons.eot │ │ │ ├── outline-icons.svg │ │ │ ├── outline-icons.ttf │ │ │ ├── outline-icons.woff │ │ │ └── outline-icons.woff2 │ │ │ └── images │ │ │ └── flags.png │ ├── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── base.html │ │ └── maintenance.html │ ├── urls │ │ ├── __init__.py │ │ ├── http_urls.py │ │ ├── urls.py │ │ └── ws_urls.py │ ├── utils │ │ ├── __init__.py │ │ └── switcher.py │ └── wsgi │ │ ├── __init__.py │ │ └── wsgi.py ├── services │ └── README.md └── templates │ ├── admin │ ├── base.html │ └── change_form.html │ └── rest_framework │ └── api.html ├── personal_files └── .gitignore ├── poetry.lock ├── pyproject.toml ├── readme-assets ├── maintainers │ └── wordmark.svg └── site │ └── wordmark.svg ├── scripts ├── clone │ ├── everything.sh │ ├── formula_one.sh │ ├── services.sh │ ├── shell.sh │ └── utils.sh ├── create │ └── app.sh └── start │ └── django.sh ├── static_files └── .gitignore ├── supervisor.d └── .gitignore └── web_server_logs ├── .gitignore └── server_logs └── .gitignore /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/README.md -------------------------------------------------------------------------------- /branding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/README.md -------------------------------------------------------------------------------- /branding/institute/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/institute/.gitignore -------------------------------------------------------------------------------- /branding/maintainers/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/maintainers/favicon.ico -------------------------------------------------------------------------------- /branding/maintainers/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/maintainers/logo.png -------------------------------------------------------------------------------- /branding/maintainers/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/maintainers/logo.svg -------------------------------------------------------------------------------- /branding/maintainers/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/maintainers/wordmark.svg -------------------------------------------------------------------------------- /branding/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/site/favicon.ico -------------------------------------------------------------------------------- /branding/site/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/site/logo.svg -------------------------------------------------------------------------------- /branding/site/logo_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/site/logo_192.png -------------------------------------------------------------------------------- /branding/site/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/site/logo_512.png -------------------------------------------------------------------------------- /branding/site/logo_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/site/logo_apple.png -------------------------------------------------------------------------------- /branding/site/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/branding/site/wordmark.svg -------------------------------------------------------------------------------- /certificates/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /configuration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/configuration/.gitignore -------------------------------------------------------------------------------- /configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/configuration/README.md -------------------------------------------------------------------------------- /configuration/base_stencil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/configuration/base_stencil.yml -------------------------------------------------------------------------------- /configuration/sites/site_stencil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/configuration/sites/site_stencil.yml -------------------------------------------------------------------------------- /history_dir/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media_files/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network_storage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/network_storage/.gitignore -------------------------------------------------------------------------------- /network_storage/protected/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/network_storage/protected/.gitignore -------------------------------------------------------------------------------- /network_storage/public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/network_storage/public/.gitignore -------------------------------------------------------------------------------- /omniport/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/.gitignore -------------------------------------------------------------------------------- /omniport/README.md: -------------------------------------------------------------------------------- 1 | # Omniport 2 | 3 | ## Instructions 4 | -------------------------------------------------------------------------------- /omniport/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/apps/README.md -------------------------------------------------------------------------------- /omniport/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/README.md -------------------------------------------------------------------------------- /omniport/core/base_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/admin/__init__.py -------------------------------------------------------------------------------- /omniport/core/base_auth/admin/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/admin/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/admin/models/user.py -------------------------------------------------------------------------------- /omniport/core/base_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/apps.py -------------------------------------------------------------------------------- /omniport/core/base_auth/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/backends/generalised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/backends/generalised.py -------------------------------------------------------------------------------- /omniport/core/base_auth/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/http_urls.py -------------------------------------------------------------------------------- /omniport/core/base_auth/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/managers/get_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/managers/get_user.py -------------------------------------------------------------------------------- /omniport/core/base_auth/managers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/managers/user.py -------------------------------------------------------------------------------- /omniport/core/base_auth/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/migrations/0001_initial.py -------------------------------------------------------------------------------- /omniport/core/base_auth/migrations/0002_user_institute_security_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/migrations/0002_user_institute_security_key.py -------------------------------------------------------------------------------- /omniport/core/base_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/models/__init__.py: -------------------------------------------------------------------------------- 1 | from base_auth.models.user import User 2 | -------------------------------------------------------------------------------- /omniport/core/base_auth/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/models/user.py -------------------------------------------------------------------------------- /omniport/core/base_auth/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/serializers/reset_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/serializers/reset_password.py -------------------------------------------------------------------------------- /omniport/core/base_auth/serializers/retrieve_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/serializers/retrieve_user.py -------------------------------------------------------------------------------- /omniport/core/base_auth/serializers/verify_secret_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/serializers/verify_secret_answer.py -------------------------------------------------------------------------------- /omniport/core/base_auth/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/base_auth/views/recover_passowrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/views/recover_passowrd.py -------------------------------------------------------------------------------- /omniport/core/base_auth/views/reset_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/views/reset_password.py -------------------------------------------------------------------------------- /omniport/core/base_auth/views/retrieve_institute_security_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/views/retrieve_institute_security_key.py -------------------------------------------------------------------------------- /omniport/core/base_auth/views/verify_institute_security_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/views/verify_institute_security_key.py -------------------------------------------------------------------------------- /omniport/core/base_auth/views/verify_secret_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/base_auth/views/verify_secret_answer.py -------------------------------------------------------------------------------- /omniport/core/bootstrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/bootstrap/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/bootstrap/apps.py -------------------------------------------------------------------------------- /omniport/core/bootstrap/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/bootstrap/http_urls.py -------------------------------------------------------------------------------- /omniport/core/bootstrap/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/bootstrap/views/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/bootstrap/views/branding.py -------------------------------------------------------------------------------- /omniport/core/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/acceptables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/app/acceptables.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/app/app.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/app/assets.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/base_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/app/base_urls.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/categorisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/app/categorisation.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/app/nomenclature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/app/nomenclature.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/allowances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/allowances.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/branding.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/emails.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/i18n.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/imagery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/imagery.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/ip_address_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/ip_address_ring.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/nomenclature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/nomenclature.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/project.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/secrets.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/services.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/site.py -------------------------------------------------------------------------------- /omniport/core/configuration/models/project/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/models/project/text.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/app/app.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/app/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/app/assets.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/app/base_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/app/base_urls.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/app/nomenclature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/app/nomenclature.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/project/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/project/branding.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/project/imagery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/project/imagery.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/project/nomenclature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/project/nomenclature.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/project/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/project/site.py -------------------------------------------------------------------------------- /omniport/core/configuration/serializers/project/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/serializers/project/text.py -------------------------------------------------------------------------------- /omniport/core/configuration/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/configuration/utils/app_config_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/utils/app_config_class.py -------------------------------------------------------------------------------- /omniport/core/configuration/utils/file_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/configuration/utils/file_search.py -------------------------------------------------------------------------------- /omniport/core/discovery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/discovery/available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/discovery/available.py -------------------------------------------------------------------------------- /omniport/core/discovery/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/discovery/discovery.py -------------------------------------------------------------------------------- /omniport/core/guest_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/guest_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/guest_auth/apps.py -------------------------------------------------------------------------------- /omniport/core/guest_auth/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/guest_auth/http_urls.py -------------------------------------------------------------------------------- /omniport/core/guest_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/guest_auth/utils/create_guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/guest_auth/utils/create_guest.py -------------------------------------------------------------------------------- /omniport/core/guest_auth/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/guest_auth/views/login.py -------------------------------------------------------------------------------- /omniport/core/guest_auth/views/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/guest_auth/views/logout.py -------------------------------------------------------------------------------- /omniport/core/kernel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/__init__.py -------------------------------------------------------------------------------- /omniport/core/kernel/admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/admin.py -------------------------------------------------------------------------------- /omniport/core/kernel/admin/model_admins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/model_admins/__init__.py -------------------------------------------------------------------------------- /omniport/core/kernel/admin/model_admins/branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/model_admins/branch.py -------------------------------------------------------------------------------- /omniport/core/kernel/admin/model_admins/faculty_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/model_admins/faculty_member.py -------------------------------------------------------------------------------- /omniport/core/kernel/admin/model_admins/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/model_admins/person.py -------------------------------------------------------------------------------- /omniport/core/kernel/admin/model_admins/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/admin/model_admins/student.py -------------------------------------------------------------------------------- /omniport/core/kernel/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/apps.py -------------------------------------------------------------------------------- /omniport/core/kernel/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/constants/biological_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/constants/biological_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/constants/graduations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/constants/graduations.py -------------------------------------------------------------------------------- /omniport/core/kernel/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/http_urls.py -------------------------------------------------------------------------------- /omniport/core/kernel/management/commands/collectdaemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/management/commands/collectdaemon.py -------------------------------------------------------------------------------- /omniport/core/kernel/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/managers/get_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/managers/get_role.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0001_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0001_models.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0002_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0002_relationships.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0003_auto_20191104_0141.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0003_auto_20191104_0141.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0004_auto_20200110_1751.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0004_auto_20200110_1751.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0004_guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0004_guest.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0005_auto_20200110_2246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0005_auto_20200110_2246.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0006_merge_20200111_1752.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0006_merge_20200111_1752.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0007_jointfaculty_jointfacultymembership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0007_jointfaculty_jointfacultymembership.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0008_auto_20220206_2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0008_auto_20220206_2015.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0009_branch_year_count_alter_person_spouses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0009_branch_year_count_alter_person_spouses.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/0010_nonteachingstaff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/migrations/0010_nonteachingstaff.py -------------------------------------------------------------------------------- /omniport/core/kernel/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/__init__.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/__init__.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/branch.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/centre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/centre.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/course.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/degree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/degree.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/department.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/institute/residence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/institute/residence.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/person.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/personal_information/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/personal_information/__init__.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/personal_information/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/personal_information/base.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/personal_information/biological_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/personal_information/biological_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/personal_information/financial_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/personal_information/financial_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/personal_information/political_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/personal_information/political_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/personal_information/residential_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/personal_information/residential_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/__init__.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/base.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/faculty_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/faculty_member.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/guest_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/guest_role.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/joint_faculty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/joint_faculty.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/maintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/maintainer.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/nonteaching_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/nonteaching_staff.py -------------------------------------------------------------------------------- /omniport/core/kernel/models/roles/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/models/roles/student.py -------------------------------------------------------------------------------- /omniport/core/kernel/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/permissions/alohomora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/permissions/alohomora.py -------------------------------------------------------------------------------- /omniport/core/kernel/permissions/has_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/permissions/has_role.py -------------------------------------------------------------------------------- /omniport/core/kernel/permissions/helpcentre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/permissions/helpcentre.py -------------------------------------------------------------------------------- /omniport/core/kernel/permissions/omnipotence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/permissions/omnipotence.py -------------------------------------------------------------------------------- /omniport/core/kernel/permissions/polyjuice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/permissions/polyjuice.py -------------------------------------------------------------------------------- /omniport/core/kernel/relations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/relations/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/relations/person.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/institute/branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/institute/branch.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/institute/degree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/institute/degree.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/institute/department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/institute/department.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/institute/residence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/institute/residence.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/person.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/personal_information/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/personal_information/biological_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/personal_information/biological_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/personal_information/financial_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/personal_information/financial_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/personal_information/political_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/personal_information/political_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/personal_information/residential_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/personal_information/residential_information.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/registration.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/roles/base.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/faculty_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/roles/faculty_member.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/roles/guest.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/joint_faculty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/roles/joint_faculty.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/maintainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/roles/maintainer.py -------------------------------------------------------------------------------- /omniport/core/kernel/serializers/roles/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/serializers/roles/student.py -------------------------------------------------------------------------------- /omniport/core/kernel/supervisor.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/supervisor.d/celery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/supervisor.d/celery.conf -------------------------------------------------------------------------------- /omniport/core/kernel/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/utils/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/utils/logs.py -------------------------------------------------------------------------------- /omniport/core/kernel/utils/rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/utils/rights.py -------------------------------------------------------------------------------- /omniport/core/kernel/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/kernel/views/rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/views/rights.py -------------------------------------------------------------------------------- /omniport/core/kernel/views/who_am_i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/kernel/views/who_am_i.py -------------------------------------------------------------------------------- /omniport/core/open_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/open_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/apps.py -------------------------------------------------------------------------------- /omniport/core/open_auth/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/open_auth/constants/data_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/constants/data_points.py -------------------------------------------------------------------------------- /omniport/core/open_auth/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/http_urls.py -------------------------------------------------------------------------------- /omniport/core/open_auth/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/migrations/0001_initial.py -------------------------------------------------------------------------------- /omniport/core/open_auth/migrations/0002_auto_20211016_0005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/migrations/0002_auto_20211016_0005.py -------------------------------------------------------------------------------- /omniport/core/open_auth/migrations/0003_alter_application_data_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/migrations/0003_alter_application_data_points.py -------------------------------------------------------------------------------- /omniport/core/open_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/open_auth/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/models/__init__.py -------------------------------------------------------------------------------- /omniport/core/open_auth/models/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/models/application.py -------------------------------------------------------------------------------- /omniport/core/open_auth/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/open_auth/serializers/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/serializers/application.py -------------------------------------------------------------------------------- /omniport/core/open_auth/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/signals/__init__.py -------------------------------------------------------------------------------- /omniport/core/open_auth/signals/app_authorisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/signals/app_authorisation.py -------------------------------------------------------------------------------- /omniport/core/open_auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/utils.py -------------------------------------------------------------------------------- /omniport/core/open_auth/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/open_auth/views/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/views/application.py -------------------------------------------------------------------------------- /omniport/core/open_auth/views/retrieve_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/open_auth/views/retrieve_data.py -------------------------------------------------------------------------------- /omniport/core/session_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/session_auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/admin.py -------------------------------------------------------------------------------- /omniport/core/session_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/apps.py -------------------------------------------------------------------------------- /omniport/core/session_auth/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/session_auth/constants/device_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/constants/device_types.py -------------------------------------------------------------------------------- /omniport/core/session_auth/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/http_urls.py -------------------------------------------------------------------------------- /omniport/core/session_auth/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/migrations/0001_initial.py -------------------------------------------------------------------------------- /omniport/core/session_auth/migrations/0002_alter_sessionmap_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/migrations/0002_alter_sessionmap_user_agent.py -------------------------------------------------------------------------------- /omniport/core/session_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/session_auth/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/models/__init__.py -------------------------------------------------------------------------------- /omniport/core/session_auth/models/session_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/models/session_map.py -------------------------------------------------------------------------------- /omniport/core/session_auth/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/session_auth/serializers/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/serializers/login.py -------------------------------------------------------------------------------- /omniport/core/session_auth/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/session_auth/utils/ip_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/utils/ip_address.py -------------------------------------------------------------------------------- /omniport/core/session_auth/utils/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/utils/user_agent.py -------------------------------------------------------------------------------- /omniport/core/session_auth/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/session_auth/views/illustration_roulette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/views/illustration_roulette.py -------------------------------------------------------------------------------- /omniport/core/session_auth/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/views/login.py -------------------------------------------------------------------------------- /omniport/core/session_auth/views/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/session_auth/views/logout.py -------------------------------------------------------------------------------- /omniport/core/token_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/token_auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/admin.py -------------------------------------------------------------------------------- /omniport/core/token_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/apps.py -------------------------------------------------------------------------------- /omniport/core/token_auth/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/authentication/__init__.py -------------------------------------------------------------------------------- /omniport/core/token_auth/authentication/app_access_token_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/authentication/app_access_token_authentication.py -------------------------------------------------------------------------------- /omniport/core/token_auth/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/constants.py -------------------------------------------------------------------------------- /omniport/core/token_auth/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/http_urls.py -------------------------------------------------------------------------------- /omniport/core/token_auth/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/migrations/0001_initial.py -------------------------------------------------------------------------------- /omniport/core/token_auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/token_auth/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/models/__init__.py -------------------------------------------------------------------------------- /omniport/core/token_auth/models/app_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/models/app_access_token.py -------------------------------------------------------------------------------- /omniport/core/token_auth/permission/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/token_auth/permission/app_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/permission/app_access_token.py -------------------------------------------------------------------------------- /omniport/core/token_auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/token_auth/views.py -------------------------------------------------------------------------------- /omniport/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/core/utils/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/utils/logs.py -------------------------------------------------------------------------------- /omniport/core/utils/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/core/utils/slack.py -------------------------------------------------------------------------------- /omniport/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/manage.py -------------------------------------------------------------------------------- /omniport/omniport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/omniport/admin/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/admin/site.py -------------------------------------------------------------------------------- /omniport/omniport/asgi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/asgi/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/asgi/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/asgi/asgi.py -------------------------------------------------------------------------------- /omniport/omniport/celery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/celery/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/celery/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/celery/celery.py -------------------------------------------------------------------------------- /omniport/omniport/context/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/omniport/context/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/context/branding.py -------------------------------------------------------------------------------- /omniport/omniport/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/omniport/middleware/drf_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/middleware/drf_auth.py -------------------------------------------------------------------------------- /omniport/omniport/middleware/ip_address_rings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/middleware/ip_address_rings.py -------------------------------------------------------------------------------- /omniport/omniport/middleware/last_seen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/middleware/last_seen.py -------------------------------------------------------------------------------- /omniport/omniport/middleware/person_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/middleware/person_roles.py -------------------------------------------------------------------------------- /omniport/omniport/middleware/routes_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/middleware/routes_control.py -------------------------------------------------------------------------------- /omniport/omniport/middleware/routes_control_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/middleware/routes_control_roles.py -------------------------------------------------------------------------------- /omniport/omniport/routing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/routing/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/routing/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/routing/routing.py -------------------------------------------------------------------------------- /omniport/omniport/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/admin.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/applications.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/authentication.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/directories.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/discovery.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/files.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/middleware.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/models.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/security.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/shell.py -------------------------------------------------------------------------------- /omniport/omniport/settings/base/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/base/templates.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/allowances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/allowances.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/base.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/branding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/branding.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/emails.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/i18n.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/integrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/integrations.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/logging.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/secrets.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/services.py -------------------------------------------------------------------------------- /omniport/omniport/settings/configuration/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/configuration/site.py -------------------------------------------------------------------------------- /omniport/omniport/settings/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/settings.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/celery.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/cors.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/drf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/drf.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/guardian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/guardian.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/jwt.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/mptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/mptt.py -------------------------------------------------------------------------------- /omniport/omniport/settings/third_party/tinymce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/settings/third_party/tinymce.py -------------------------------------------------------------------------------- /omniport/omniport/static/@fullcalendar/common.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/@fullcalendar/common.main.css -------------------------------------------------------------------------------- /omniport/omniport/static/@fullcalendar/daygrid.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/@fullcalendar/daygrid.main.css -------------------------------------------------------------------------------- /omniport/omniport/static/@fullcalendar/list.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/@fullcalendar/list.main.css -------------------------------------------------------------------------------- /omniport/omniport/static/@fullcalendar/semantic.fullCalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/@fullcalendar/semantic.fullCalendar.css -------------------------------------------------------------------------------- /omniport/omniport/static/@fullcalendar/timegrid.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/@fullcalendar/timegrid.main.css -------------------------------------------------------------------------------- /omniport/omniport/static/errors/confetti_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/confetti_green.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/confetti_pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/confetti_pink.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/confetti_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/confetti_yellow.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/dart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/dart.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/dart_stuck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/dart_stuck.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/dartboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/dartboard.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/person.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/person_stressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/person_stressed.svg -------------------------------------------------------------------------------- /omniport/omniport/static/errors/rabbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/errors/rabbit.svg -------------------------------------------------------------------------------- /omniport/omniport/static/illustrations/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/illustrations/0.svg -------------------------------------------------------------------------------- /omniport/omniport/static/illustrations/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/illustrations/1.svg -------------------------------------------------------------------------------- /omniport/omniport/static/illustrations/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/illustrations/2.svg -------------------------------------------------------------------------------- /omniport/omniport/static/illustrations/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/illustrations/3.svg -------------------------------------------------------------------------------- /omniport/omniport/static/illustrations/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/illustrations/4.svg -------------------------------------------------------------------------------- /omniport/omniport/static/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/jquery/jquery.min.js -------------------------------------------------------------------------------- /omniport/omniport/static/omniport/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/omniport/css/layout.css -------------------------------------------------------------------------------- /omniport/omniport/static/omniport/css/styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/omniport/css/styling.css -------------------------------------------------------------------------------- /omniport/omniport/static/pure-react-carousel/react-carousel.es.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/pure-react-carousel/react-carousel.es.css -------------------------------------------------------------------------------- /omniport/omniport/static/pure-react-carousel/react-carousel.es.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/pure-react-carousel/react-carousel.es.css.map -------------------------------------------------------------------------------- /omniport/omniport/static/react-semantic-toasts/react-semantic-alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/react-semantic-toasts/react-semantic-alert.css -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/semantic.fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/semantic.fix.css -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/semantic.min.css -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/semantic.min.js -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.eot -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.svg -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.ttf -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.woff -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/brand-icons.woff2 -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.otf -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.svg -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.eot -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.svg -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.ttf -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.woff -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/fonts/outline-icons.woff2 -------------------------------------------------------------------------------- /omniport/omniport/static/semantic-ui/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/static/semantic-ui/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /omniport/omniport/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/templates/404.html -------------------------------------------------------------------------------- /omniport/omniport/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/templates/500.html -------------------------------------------------------------------------------- /omniport/omniport/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/templates/base.html -------------------------------------------------------------------------------- /omniport/omniport/templates/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/templates/maintenance.html -------------------------------------------------------------------------------- /omniport/omniport/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/urls/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/urls/http_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/urls/http_urls.py -------------------------------------------------------------------------------- /omniport/omniport/urls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/urls/urls.py -------------------------------------------------------------------------------- /omniport/omniport/urls/ws_urls.py: -------------------------------------------------------------------------------- 1 | ws_urlpatterns = [ 2 | ] 3 | -------------------------------------------------------------------------------- /omniport/omniport/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniport/omniport/utils/switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/utils/switcher.py -------------------------------------------------------------------------------- /omniport/omniport/wsgi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/wsgi/__init__.py -------------------------------------------------------------------------------- /omniport/omniport/wsgi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/omniport/wsgi/wsgi.py -------------------------------------------------------------------------------- /omniport/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/services/README.md -------------------------------------------------------------------------------- /omniport/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/templates/admin/base.html -------------------------------------------------------------------------------- /omniport/templates/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/templates/admin/change_form.html -------------------------------------------------------------------------------- /omniport/templates/rest_framework/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/omniport/templates/rest_framework/api.html -------------------------------------------------------------------------------- /personal_files/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme-assets/maintainers/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/readme-assets/maintainers/wordmark.svg -------------------------------------------------------------------------------- /readme-assets/site/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/readme-assets/site/wordmark.svg -------------------------------------------------------------------------------- /scripts/clone/everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/clone/everything.sh -------------------------------------------------------------------------------- /scripts/clone/formula_one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/clone/formula_one.sh -------------------------------------------------------------------------------- /scripts/clone/services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/clone/services.sh -------------------------------------------------------------------------------- /scripts/clone/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/clone/shell.sh -------------------------------------------------------------------------------- /scripts/clone/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/clone/utils.sh -------------------------------------------------------------------------------- /scripts/create/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/create/app.sh -------------------------------------------------------------------------------- /scripts/start/django.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-backend/HEAD/scripts/start/django.sh -------------------------------------------------------------------------------- /static_files/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supervisor.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | -------------------------------------------------------------------------------- /web_server_logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_server_logs/server_logs/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------