├── .coafile ├── .editorconfig ├── .gitignore ├── .openshift ├── README.md ├── action_hooks │ ├── build │ ├── deploy │ ├── post_deploy │ └── pre_build └── cron │ ├── README.cron │ ├── daily │ └── .gitignore │ ├── hourly │ └── .gitignore │ ├── minutely │ └── .gitignore │ ├── monthly │ └── .gitignore │ └── weekly │ ├── README │ ├── chrono.dat │ ├── chronograph │ ├── jobs.allow │ └── jobs.deny ├── .travis.yml ├── README.md ├── data └── .gitkeep ├── libs └── .gitkeep ├── requirements.txt ├── setup.py └── wsgi ├── application ├── odyssy ├── academic │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180515_0916.py │ │ ├── 0003_auto_20180516_0158.py │ │ ├── 0004_auto_20180602_1505.py │ │ ├── 0005_auto_20180602_1812.py │ │ ├── 0006_auto_20180608_1647.py │ │ ├── 0007_calendar.py │ │ ├── 0008_auto_20180612_1438.py │ │ ├── 0009_calendar_slug.py │ │ ├── 0010_auto_20180612_1523.py │ │ ├── 0011_auto_20180612_1527.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── academic │ │ │ ├── ac.html │ │ │ ├── all_programme.html │ │ │ ├── btech │ │ │ ├── btech_cse.html │ │ │ └── btech_it.html │ │ │ ├── mtech │ │ │ ├── mtech_cse.html │ │ │ └── mtech_it.html │ │ │ ├── phd_courses.html │ │ │ ├── single_course.html │ │ │ └── single_programme.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── admission │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_admission_batch.py │ │ ├── 0003_admission_programme.py │ │ ├── 0004_auto_20180526_0329.py │ │ ├── 0005_auto_20180526_0433.py │ │ ├── 0005_auto_20180527_2257.py │ │ ├── 0006_merge_20180528_0429.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── admission │ │ │ ├── admission.html │ │ │ ├── btech.html │ │ │ └── mtech.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── announcement │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170719_1545.py │ │ ├── 0003_announcement_slug.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── announcement │ │ │ ├── announcement-all.html │ │ │ └── info.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── basic │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── carousel_api.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── basic │ │ │ ├── css │ │ │ ├── dashboard.css │ │ │ ├── style.css │ │ │ ├── uikit-rtl.css │ │ │ ├── uikit-rtl.min.css │ │ │ ├── uikit.css │ │ │ └── uikit.min.css │ │ │ ├── images │ │ │ ├── L1.jpg │ │ │ ├── L2.jpg │ │ │ ├── L3.jpg │ │ │ ├── L4.jpg │ │ │ ├── Logo.jpg │ │ │ ├── Ranks2016.jpg │ │ │ ├── SKP.jpg │ │ │ ├── building-works.png │ │ │ ├── close.png │ │ │ ├── courses.png │ │ │ ├── daiict.jpg │ │ │ ├── finance.png │ │ │ ├── germi.jpg │ │ │ ├── gsfc.jpg │ │ │ ├── hostel1.jpg │ │ │ ├── hostel2.jpg │ │ │ ├── hostel3.jpg │ │ │ ├── hr-planning.png │ │ │ ├── loading.gif │ │ │ ├── majors.png │ │ │ ├── next.png │ │ │ ├── prev.png │ │ │ ├── registrar-email.jpg │ │ │ ├── research-council.png │ │ │ ├── rti_standard_signature_eng_colour-copy.gif │ │ │ ├── strategic-planning.png │ │ │ ├── tcs.png │ │ │ ├── thumb_hostel1.jpg │ │ │ ├── thumb_hostel2.jpg │ │ │ └── thumb_hostel3.jpg │ │ │ ├── js │ │ │ ├── uikit-icons.js │ │ │ ├── uikit-icons.min.js │ │ │ ├── uikit.js │ │ │ └── uikit.min.js │ │ │ └── pdf │ │ │ ├── AC-IIITV.pdf │ │ │ ├── IC-IIITV.pdf │ │ │ ├── MOA-RULES-ND-REG.pdf │ │ │ ├── MOA.pdf │ │ │ ├── MOU.pdf │ │ │ ├── curriculum_CSE.pdf │ │ │ ├── curriculum_IT.pdf │ │ │ ├── library-circulation.pdf │ │ │ └── mtech_program_structure.pdf │ ├── templates │ │ ├── basic │ │ │ ├── base.html │ │ │ └── index.html │ │ └── registration │ │ │ └── login.html │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── careers │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── __init__.py │ │ └── careers │ │ │ └── careers.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── committee │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180514_1507.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── committee │ │ │ ├── about.html │ │ │ ├── all_committee.html │ │ │ ├── bog.html │ │ │ ├── committee_base.html │ │ │ ├── directors_message.html │ │ │ ├── rti.html │ │ │ ├── senate.html │ │ │ └── society_members.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── dashboard │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── add.html │ │ ├── all_users.html │ │ ├── ane_list.html │ │ ├── change_password.html │ │ ├── dashboard.html │ │ ├── edit_profile.html │ │ └── signup.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── events │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_event_slug.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── events │ │ │ ├── event_list.html │ │ │ └── event_single_item.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── gallery │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── templates │ │ └── gallery │ │ │ ├── gallery_detail.html │ │ │ └── gallery_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── linkages │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180526_0051.py │ │ ├── 0003_auto_20180606_0021.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── linkages │ │ │ ├── linkage_single.html │ │ │ └── linkages.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── more │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180703_1005.py │ │ ├── 0003_talk_speaker.py │ │ ├── 0004_auto_20180703_1028.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── __init__.py │ │ └── more │ │ │ ├── __init__.py │ │ │ ├── faq.html │ │ │ ├── hostel.html │ │ │ ├── invited_talks.html │ │ │ ├── library.html │ │ │ ├── student_corner.html │ │ │ └── student_corner_view.html │ ├── urls.py │ └── views.py ├── news │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170709_0048.py │ │ ├── 0003_auto_20170709_1833.py │ │ ├── 0004_auto_20170719_1545.py │ │ ├── 0005_news_slug.py │ │ ├── 0006_auto_20180620_1816.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── news │ │ │ ├── news_list.html │ │ │ └── single_news.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── odyssy │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── office_orders │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── office_orders │ │ │ ├── archive.html │ │ │ └── order.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── people │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── README.md │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180512_1854.py │ │ ├── 0003_auto_20180513_0910.py │ │ ├── 0004_auto_20180526_0258.py │ │ ├── 0005_auto_20180526_0433.py │ │ ├── 0005_auto_20180527_2257.py │ │ ├── 0006_merge_20180528_0429.py │ │ ├── 0007_auto_20180612_1006.py │ │ ├── 0008_people_link_gh.py │ │ ├── 0009_auto_20180612_1132.py │ │ ├── 0010_auto_20180617_1005.py │ │ ├── 0011_auto_20180620_1827.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── people.html │ │ └── person.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt ├── secrets.py ├── tag │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── tag │ │ │ ├── announcement_tag.html │ │ │ ├── news_tag.html │ │ │ ├── picture_tag.html │ │ │ └── simple_tag.html │ ├── tests.py │ ├── urls.py │ └── views.py └── tender │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170805_1152.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── tender │ │ ├── archive.html │ │ └── tender.html │ ├── tests.py │ ├── urls.py │ └── views.py └── static └── README /.coafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.coafile -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.gitignore -------------------------------------------------------------------------------- /.openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/README.md -------------------------------------------------------------------------------- /.openshift/action_hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/action_hooks/build -------------------------------------------------------------------------------- /.openshift/action_hooks/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/action_hooks/deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/post_deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/action_hooks/post_deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/action_hooks/pre_build -------------------------------------------------------------------------------- /.openshift/cron/README.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/cron/README.cron -------------------------------------------------------------------------------- /.openshift/cron/daily/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/hourly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/minutely/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/monthly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/cron/weekly/README -------------------------------------------------------------------------------- /.openshift/cron/weekly/chrono.dat: -------------------------------------------------------------------------------- 1 | Time And Relative D...n In Execution (Open)Shift! 2 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/chronograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/cron/weekly/chronograph -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.allow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/cron/weekly/jobs.allow -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.openshift/cron/weekly/jobs.deny -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/setup.py -------------------------------------------------------------------------------- /wsgi/application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/application -------------------------------------------------------------------------------- /wsgi/odyssy/academic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/academic/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0002_auto_20180515_0916.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0002_auto_20180515_0916.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0003_auto_20180516_0158.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0003_auto_20180516_0158.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0004_auto_20180602_1505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0004_auto_20180602_1505.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0005_auto_20180602_1812.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0005_auto_20180602_1812.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0006_auto_20180608_1647.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0006_auto_20180608_1647.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0007_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0007_calendar.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0008_auto_20180612_1438.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0008_auto_20180612_1438.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0009_calendar_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0009_calendar_slug.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0010_auto_20180612_1523.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0010_auto_20180612_1523.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/0011_auto_20180612_1527.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/migrations/0011_auto_20180612_1527.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/academic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/ac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/ac.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/all_programme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/all_programme.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/btech/btech_cse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/btech/btech_cse.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/btech/btech_it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/btech/btech_it.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/mtech/mtech_cse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/mtech/mtech_cse.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/mtech/mtech_it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/mtech/mtech_it.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/phd_courses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/phd_courses.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/single_course.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/single_course.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/templates/academic/single_programme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/templates/academic/single_programme.html -------------------------------------------------------------------------------- /wsgi/odyssy/academic/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/academic/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/academic/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/academic/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/admission/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0002_admission_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0002_admission_batch.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0003_admission_programme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0003_admission_programme.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0004_auto_20180526_0329.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0004_auto_20180526_0329.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0005_auto_20180526_0433.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0005_auto_20180526_0433.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0005_auto_20180527_2257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0005_auto_20180527_2257.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/0006_merge_20180528_0429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/migrations/0006_merge_20180528_0429.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/admission/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/templates/admission/admission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/templates/admission/admission.html -------------------------------------------------------------------------------- /wsgi/odyssy/admission/templates/admission/btech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/templates/admission/btech.html -------------------------------------------------------------------------------- /wsgi/odyssy/admission/templates/admission/mtech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/templates/admission/mtech.html -------------------------------------------------------------------------------- /wsgi/odyssy/admission/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/admission/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/admission/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/admission/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/migrations/0002_auto_20170719_1545.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/migrations/0002_auto_20170719_1545.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/migrations/0003_announcement_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/migrations/0003_announcement_slug.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/templates/announcement/announcement-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/templates/announcement/announcement-all.html -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/templates/announcement/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/templates/announcement/info.html -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/announcement/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/announcement/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/README.md -------------------------------------------------------------------------------- /wsgi/odyssy/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/basic/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/carousel_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/carousel_api.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/basic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/css/dashboard.css -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/css/style.css -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/css/uikit-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/css/uikit-rtl.css -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/css/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/css/uikit-rtl.min.css -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/css/uikit.css -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/css/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/css/uikit.min.css -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/L1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/L1.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/L2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/L2.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/L3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/L3.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/L4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/L4.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/Logo.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/Ranks2016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/Ranks2016.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/SKP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/SKP.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/building-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/building-works.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/close.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/courses.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/daiict.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/daiict.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/finance.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/germi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/germi.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/gsfc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/gsfc.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/hostel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/hostel1.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/hostel2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/hostel2.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/hostel3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/hostel3.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/hr-planning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/hr-planning.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/loading.gif -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/majors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/majors.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/next.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/prev.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/registrar-email.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/registrar-email.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/research-council.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/research-council.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/rti_standard_signature_eng_colour-copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/rti_standard_signature_eng_colour-copy.gif -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/strategic-planning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/strategic-planning.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/tcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/tcs.png -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/thumb_hostel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/thumb_hostel1.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/thumb_hostel2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/thumb_hostel2.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/images/thumb_hostel3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/images/thumb_hostel3.jpg -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/js/uikit-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/js/uikit-icons.js -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/js/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/js/uikit-icons.min.js -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/js/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/js/uikit.js -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/js/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/js/uikit.min.js -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/AC-IIITV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/AC-IIITV.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/IC-IIITV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/IC-IIITV.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/MOA-RULES-ND-REG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/MOA-RULES-ND-REG.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/MOA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/MOA.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/MOU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/MOU.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/curriculum_CSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/curriculum_CSE.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/curriculum_IT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/curriculum_IT.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/library-circulation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/library-circulation.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/static/basic/pdf/mtech_program_structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/static/basic/pdf/mtech_program_structure.pdf -------------------------------------------------------------------------------- /wsgi/odyssy/basic/templates/basic/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/templates/basic/base.html -------------------------------------------------------------------------------- /wsgi/odyssy/basic/templates/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/templates/basic/index.html -------------------------------------------------------------------------------- /wsgi/odyssy/basic/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/templates/registration/login.html -------------------------------------------------------------------------------- /wsgi/odyssy/basic/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/tests.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/utils.py -------------------------------------------------------------------------------- /wsgi/odyssy/basic/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/basic/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/careers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/careers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/careers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/careers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/careers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/careers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/careers/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/careers/templates/careers/careers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/templates/careers/careers.html -------------------------------------------------------------------------------- /wsgi/odyssy/careers/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/careers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/careers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/careers/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/committee/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/migrations/0002_auto_20180514_1507.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/migrations/0002_auto_20180514_1507.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/committee/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/about.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/all_committee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/all_committee.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/bog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/bog.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/committee_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/committee_base.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/directors_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/directors_message.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/rti.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/rti.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/senate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/senate.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/templates/committee/society_members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/templates/committee/society_members.html -------------------------------------------------------------------------------- /wsgi/odyssy/committee/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/committee/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/committee/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/committee/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/forms.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/add.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/all_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/all_users.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/ane_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/ane_list.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/change_password.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/dashboard.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/edit_profile.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/templates/signup.html -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/tests.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/dashboard/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/README.md -------------------------------------------------------------------------------- /wsgi/odyssy/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/events/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/migrations/0002_event_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/migrations/0002_event_slug.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/templates/events/event_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/templates/events/event_list.html -------------------------------------------------------------------------------- /wsgi/odyssy/events/templates/events/event_single_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/templates/events/event_single_item.html -------------------------------------------------------------------------------- /wsgi/odyssy/events/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/events/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/events/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/events/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/admin.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/gallery/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/templates/gallery/gallery_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/gallery/templates/gallery/gallery_detail.html -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/templates/gallery/gallery_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/gallery/templates/gallery/gallery_list.html -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/gallery/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/gallery/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/gallery/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/migrations/0002_auto_20180526_0051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/migrations/0002_auto_20180526_0051.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/migrations/0003_auto_20180606_0021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/migrations/0003_auto_20180606_0021.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/templates/linkages/linkage_single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/templates/linkages/linkage_single.html -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/templates/linkages/linkages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/templates/linkages/linkages.html -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/tests.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/linkages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/linkages/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/manage.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/more/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/migrations/0002_auto_20180703_1005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/migrations/0002_auto_20180703_1005.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/migrations/0003_talk_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/migrations/0003_talk_speaker.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/migrations/0004_auto_20180703_1028.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/migrations/0004_auto_20180703_1028.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/more/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/templates/more/faq.html -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/hostel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/templates/more/hostel.html -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/invited_talks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/templates/more/invited_talks.html -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/templates/more/library.html -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/student_corner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/templates/more/student_corner.html -------------------------------------------------------------------------------- /wsgi/odyssy/more/templates/more/student_corner_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/templates/more/student_corner_view.html -------------------------------------------------------------------------------- /wsgi/odyssy/more/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/more/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/more/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/README.md -------------------------------------------------------------------------------- /wsgi/odyssy/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/news/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/0002_auto_20170709_0048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/migrations/0002_auto_20170709_0048.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/0003_auto_20170709_1833.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/migrations/0003_auto_20170709_1833.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/0004_auto_20170719_1545.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/migrations/0004_auto_20170719_1545.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/0005_news_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/migrations/0005_news_slug.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/0006_auto_20180620_1816.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/migrations/0006_auto_20180620_1816.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/news/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/templates/news/news_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/templates/news/news_list.html -------------------------------------------------------------------------------- /wsgi/odyssy/news/templates/news/single_news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/templates/news/single_news.html -------------------------------------------------------------------------------- /wsgi/odyssy/news/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/news/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/news/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/news/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/odyssy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/odyssy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/odyssy/settings.py -------------------------------------------------------------------------------- /wsgi/odyssy/odyssy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/odyssy/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/odyssy/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/odyssy/wsgi.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/templates/office_orders/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/templates/office_orders/archive.html -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/templates/office_orders/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/templates/office_orders/order.html -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/tests.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/office_orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/office_orders/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/people/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/api/README.md -------------------------------------------------------------------------------- /wsgi/odyssy/people/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/people/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/api/serializers.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/api/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/api/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0002_auto_20180512_1854.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0002_auto_20180512_1854.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0003_auto_20180513_0910.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0003_auto_20180513_0910.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0004_auto_20180526_0258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0004_auto_20180526_0258.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0005_auto_20180526_0433.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0005_auto_20180526_0433.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0005_auto_20180527_2257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0005_auto_20180527_2257.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0006_merge_20180528_0429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0006_merge_20180528_0429.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0007_auto_20180612_1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0007_auto_20180612_1006.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0008_people_link_gh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0008_people_link_gh.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0009_auto_20180612_1132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0009_auto_20180612_1132.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0010_auto_20180617_1005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0010_auto_20180617_1005.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/0011_auto_20180620_1827.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/migrations/0011_auto_20180620_1827.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/people/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/templates/people.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/templates/people.html -------------------------------------------------------------------------------- /wsgi/odyssy/people/templates/person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/templates/person.html -------------------------------------------------------------------------------- /wsgi/odyssy/people/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/people/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/people/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/people/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/requirements.txt -------------------------------------------------------------------------------- /wsgi/odyssy/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/secrets.py -------------------------------------------------------------------------------- /wsgi/odyssy/tag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/tag/admin.py: -------------------------------------------------------------------------------- 1 | 2 | # Register your models here. 3 | -------------------------------------------------------------------------------- /wsgi/odyssy/tag/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/tag/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/tag/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/tag/templates/tag/announcement_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/templates/tag/announcement_tag.html -------------------------------------------------------------------------------- /wsgi/odyssy/tag/templates/tag/news_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/templates/tag/news_tag.html -------------------------------------------------------------------------------- /wsgi/odyssy/tag/templates/tag/picture_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/templates/tag/picture_tag.html -------------------------------------------------------------------------------- /wsgi/odyssy/tag/templates/tag/simple_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/templates/tag/simple_tag.html -------------------------------------------------------------------------------- /wsgi/odyssy/tag/tests.py: -------------------------------------------------------------------------------- 1 | 2 | # Create your tests here. 3 | -------------------------------------------------------------------------------- /wsgi/odyssy/tag/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/tag/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tag/views.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/tender/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/admin.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/apps.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/migrations/0002_auto_20170805_1152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/migrations/0002_auto_20170805_1152.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/tender/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/models.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/templates/tender/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/templates/tender/archive.html -------------------------------------------------------------------------------- /wsgi/odyssy/tender/templates/tender/tender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/templates/tender/tender.html -------------------------------------------------------------------------------- /wsgi/odyssy/tender/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/odyssy/tender/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/urls.py -------------------------------------------------------------------------------- /wsgi/odyssy/tender/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/odyssy/tender/views.py -------------------------------------------------------------------------------- /wsgi/static/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiitv/Odyssy/HEAD/wsgi/static/README --------------------------------------------------------------------------------