NEW

Summary

Directory Structure

Directory structure:
└── imgiitroorkee-omniport-shell/
    ├── README.md
    ├── __init__.py
    ├── admin.py
    ├── apps.py
    ├── LICENSE
    ├── swapper_replacements.py
    ├── tests.py
    ├── views.py
    ├── constants/
    │   ├── __init__.py
    │   ├── centres.py
    │   ├── degrees.py
    │   ├── departments.py
    │   ├── faculty_designations.py
    │   ├── maintainer.py
    │   ├── reservation_categories.py
    │   └── residences.py
    ├── migrations/
    │   ├── 0001_initial.py
    │   ├── 0002_facultymember_employee_id.py
    │   ├── 0003_politicalinformation_reservation_category.py
    │   ├── 0004_auto_20200110_1751.py
    │   ├── 0005_auto_20200110_1922.py
    │   ├── 0006_auto_20201222_1030.py
    │   ├── 0007_auto_20211130_0216.py
    │   ├── 0008_auto_20220206_2015.py
    │   ├── 0009_alter_residence_code.py
    │   ├── 0010_alter_department_code_alter_residence_code.py
    │   ├── 0011_alter_centre_code_alter_residence_code.py
    │   ├── 0012_alter_department_code_and_more.py
    │   ├── 0013_alter_centre_code.py
    │   ├── 0014_alter_residence_code.py
    │   ├── 0015_alter_degree_code.py
    │   ├── 0016_alter_facultymember_designation_and_more.py
    │   ├── 0017_alter_facultymember_designation_and_more.py
    │   ├── 0018_nonteachingstaff.py
    │   └── __init__.py
    ├── models/
    │   ├── __init__.py
    │   ├── institute/
    │   │   ├── __init__.py
    │   │   ├── centre.py
    │   │   ├── degree.py
    │   │   ├── department.py
    │   │   └── residence.py
    │   ├── personal_information/
    │   │   ├── __init__.py
    │   │   └── political_information.py
    │   └── roles/
    │       ├── __init__.py
    │       ├── faculty_member.py
    │       ├── joint_faculty.py
    │       ├── maintainer.py
    │       ├── nonteaching_staff.py
    │       └── student.py
    ├── serializers/
    │   ├── __init__.py
    │   ├── registration.py
    │   ├── personal_information/
    │   │   ├── __init__.py
    │   │   └── political_information.py
    │   └── roles/
    │       ├── __init__.py
    │       ├── faculty_member.py
    │       ├── joint_faculty.py
    │       └── maintainer.py
    └── utils/
        ├── __init__.py
        └── rights.py

Files Content