├── pro1 ├── blog │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── apps.py │ ├── static │ │ └── blog │ │ │ ├── images │ │ │ ├── dgpicon.png │ │ │ └── codingBG.jpg │ │ │ ├── js │ │ │ └── script.js │ │ │ └── css │ │ │ └── main.css │ ├── __pycache__ │ │ ├── admin.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── templates │ │ └── blog │ │ │ ├── home.html │ │ │ ├── about.html │ │ │ └── contact.html │ ├── views.py │ └── urls.py ├── pro1 │ ├── __init__.py │ ├── __pycache__ │ │ ├── urls.cpython-36.pyc │ │ ├── wsgi.cpython-36.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── settings.cpython-36.pyc │ └── wsgi.py ├── study │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── apps.py │ ├── __pycache__ │ │ ├── admin.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ └── templates │ │ └── study │ │ ├── bt │ │ ├── bt_third.html │ │ ├── bt_fourth.html │ │ ├── bt_second.html │ │ └── bt.html │ │ ├── ce │ │ ├── ce_third.html │ │ ├── ce_fourth.html │ │ ├── ce_second.html │ │ └── ce.html │ │ ├── ch │ │ ├── ch_third.html │ │ ├── ch_fourth.html │ │ ├── ch_second.html │ │ └── ch.html │ │ ├── cs │ │ ├── cs_third.html │ │ ├── cs_fourth.html │ │ ├── cs_second.html │ │ └── cs.html │ │ ├── ec │ │ ├── ec_third.html │ │ ├── ec_fourth.html │ │ ├── ec_second.html │ │ └── ec.html │ │ ├── ee │ │ ├── ee_third.html │ │ ├── ee_fourth.html │ │ ├── ee_second.html │ │ └── ee.html │ │ ├── it │ │ ├── it_third.html │ │ ├── it_fourth.html │ │ ├── it_second.html │ │ └── it.html │ │ ├── mm │ │ ├── mm_third.html │ │ ├── mm_fourth.html │ │ ├── mm_second.html │ │ └── mm.html │ │ └── home.html ├── users │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0004_profile.cpython-36.pyc │ │ │ ├── 0002_auto_20181103_0240.cpython-36.pyc │ │ │ └── 0003_auto_20181103_0246.cpython-36.pyc │ │ ├── 0003_auto_20181103_0246.py │ │ ├── 0002_auto_20181103_0240.py │ │ ├── 0004_profile.py │ │ └── 0001_initial.py │ ├── tests.py │ ├── apps.py │ ├── .vscode │ │ └── settings.json │ ├── __pycache__ │ │ ├── admin.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── forms.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── tokens.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── admin.py │ ├── templates │ │ └── users │ │ │ ├── activation.html │ │ │ ├── invalid_registration.html │ │ │ ├── profile.html │ │ │ ├── mail_sent.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_complete.html │ │ │ ├── logout.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset.html │ │ │ ├── register.html │ │ │ └── login.html │ ├── tokens.py │ ├── models.py │ └── forms.py ├── year1 │ ├── __init__.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── apps.py │ ├── urls.py │ ├── views.py │ └── templates │ │ └── year1 │ │ ├── year_1_doc.html │ │ └── home.html ├── catalog │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── views.py │ ├── apps.py │ └── __pycache__ │ │ ├── admin.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── models.cpython-36.pyc ├── interviews │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── tests.py │ ├── apps.py │ ├── __pycache__ │ │ ├── admin.cpython-36.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── ee.html │ ├── urls.py │ ├── views.py │ └── admin.py ├── noticeboard │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ ├── admin.py │ ├── apps.py │ ├── __pycache__ │ │ ├── urls.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── urls.py │ ├── templates │ │ └── noticeboard │ │ │ └── home.html │ └── views.py ├── .gitignore ├── Procfile ├── procfile ├── staticfiles │ ├── bootstrap │ │ ├── css │ │ │ ├── style.css │ │ │ └── style.min.css │ │ ├── scss │ │ │ ├── _custom-styles.scss │ │ │ ├── _custom-variables.scss │ │ │ ├── free │ │ │ │ ├── _depreciated.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── modules │ │ │ │ │ └── animations-extended │ │ │ │ │ │ └── animations-extended.scss │ │ │ │ ├── _footers.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _switch.scss │ │ │ │ ├── _carousels.scss │ │ │ │ └── _tables.scss │ │ │ ├── core │ │ │ │ ├── _helpers.scss │ │ │ │ └── _masks.scss │ │ │ └── mdb.lite.scss │ │ ├── License.pdf │ │ ├── img │ │ │ ├── overlays │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ └── 09.png │ │ │ ├── lightbox │ │ │ │ ├── preloader.gif │ │ │ │ ├── default-skin.png │ │ │ │ └── default-skin.svg │ │ │ └── svg │ │ │ │ ├── arrow_left.svg │ │ │ │ └── arrow_right.svg │ │ ├── font │ │ │ └── roboto │ │ │ │ ├── Roboto-Bold.eot │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Light.eot │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Thin.eot │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-Medium.eot │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-Regular.eot │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ └── Roboto-Regular.woff2 │ │ ├── js │ │ │ └── modules │ │ │ │ ├── scrolling-navbar.js │ │ │ │ └── enhanced-modals.js │ │ ├── README.txt │ │ └── index.html │ ├── blog │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ └── style.min.css │ │ │ ├── scss │ │ │ │ ├── _custom-styles.scss │ │ │ │ ├── _custom-variables.scss │ │ │ │ ├── free │ │ │ │ │ ├── _depreciated.scss │ │ │ │ │ ├── _dropdowns.scss │ │ │ │ │ ├── modules │ │ │ │ │ │ └── animations-extended │ │ │ │ │ │ │ └── animations-extended.scss │ │ │ │ │ ├── _footers.scss │ │ │ │ │ ├── _badges.scss │ │ │ │ │ ├── _input-group.scss │ │ │ │ │ ├── _cards.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _switch.scss │ │ │ │ │ ├── _carousels.scss │ │ │ │ │ └── _tables.scss │ │ │ │ ├── core │ │ │ │ │ ├── _helpers.scss │ │ │ │ │ └── _masks.scss │ │ │ │ └── mdb.lite.scss │ │ │ ├── License.pdf │ │ │ ├── img │ │ │ │ ├── overlays │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.png │ │ │ │ │ ├── 03.png │ │ │ │ │ ├── 04.png │ │ │ │ │ ├── 05.png │ │ │ │ │ ├── 06.png │ │ │ │ │ ├── 07.png │ │ │ │ │ ├── 08.png │ │ │ │ │ └── 09.png │ │ │ │ ├── lightbox │ │ │ │ │ ├── preloader.gif │ │ │ │ │ ├── default-skin.png │ │ │ │ │ └── default-skin.svg │ │ │ │ └── svg │ │ │ │ │ ├── arrow_left.svg │ │ │ │ │ └── arrow_right.svg │ │ │ ├── font │ │ │ │ └── roboto │ │ │ │ │ ├── Roboto-Bold.eot │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ │ ├── Roboto-Light.eot │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ ├── Roboto-Thin.eot │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ │ ├── Roboto-Light.woff │ │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ │ ├── Roboto-Medium.eot │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ │ ├── Roboto-Regular.eot │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ │ └── Roboto-Regular.woff2 │ │ │ ├── js │ │ │ │ └── modules │ │ │ │ │ ├── scrolling-navbar.js │ │ │ │ │ └── enhanced-modals.js │ │ │ ├── README.txt │ │ │ └── index.html │ │ └── main.css │ └── admin │ │ ├── fonts │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ └── README.txt │ │ ├── img │ │ ├── tooltag-arrowright.svg │ │ ├── README.txt │ │ ├── icon-addlink.svg │ │ ├── tooltag-add.svg │ │ ├── icon-changelink.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-yes.svg │ │ ├── search.svg │ │ ├── icon-alert.svg │ │ ├── icon-no.svg │ │ ├── inline-delete.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-unknown.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-clock.svg │ │ ├── gis │ │ │ ├── move_vertex_on.svg │ │ │ └── move_vertex_off.svg │ │ ├── icon-calendar.svg │ │ ├── calendar-icons.svg │ │ ├── LICENSE │ │ └── sorting-icons.svg │ │ ├── js │ │ ├── prepopulate.min.js │ │ ├── jquery.init.js │ │ ├── cancel.js │ │ ├── prepopulate_init.js │ │ ├── popup_response.js │ │ ├── vendor │ │ │ ├── select2 │ │ │ │ ├── i18n │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── cs.js │ │ │ │ └── LICENSE.md │ │ │ ├── xregexp │ │ │ │ └── LICENSE.txt │ │ │ └── jquery │ │ │ │ └── LICENSE.txt │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── autocomplete.js │ │ ├── collapse.min.js │ │ └── prepopulate.js │ │ └── css │ │ ├── fonts.css │ │ ├── dashboard.css │ │ ├── vendor │ │ └── select2 │ │ │ └── LICENSE-SELECT2.md │ │ └── login.css ├── badge.png ├── db.sqlite3 ├── media │ └── profile_pics │ │ └── iSU_1.jpg ├── .env.example ├── requirements.txt └── manage.py ├── screenshots ├── README.md ├── P1.PNG ├── P2.PNG ├── P3.PNG ├── P4.PNG ├── P5.PNG ├── P6.PNG ├── P7.PNG ├── p8.png └── p9.png ├── codecov.yml ├── Pipfile ├── .travis.yml ├── pull_request_template.md ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── LICENSE /pro1/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/pro1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/study/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/year1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/interviews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/noticeboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/study/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/year1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc -------------------------------------------------------------------------------- /pro1/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn pro1.wsgi -------------------------------------------------------------------------------- /pro1/catalog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/interviews/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn pro1.wsgi -------------------------------------------------------------------------------- /pro1/noticeboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/css/style.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/css/style.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- 1 | This folder contains the screenshots. 2 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/_custom-styles.scss: -------------------------------------------------------------------------------- 1 | // Your custom styles 2 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/_custom-variables.scss: -------------------------------------------------------------------------------- 1 | // Your custom variables -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/_custom-styles.scss: -------------------------------------------------------------------------------- 1 | // Your custom styles 2 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/_custom-variables.scss: -------------------------------------------------------------------------------- 1 | // Your custom variables -------------------------------------------------------------------------------- /pro1/blog/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /pro1/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/badge.png -------------------------------------------------------------------------------- /pro1/blog/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /pro1/blog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/catalog/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /pro1/catalog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/db.sqlite3 -------------------------------------------------------------------------------- /pro1/study/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /pro1/study/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/users/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/year1/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /pro1/year1/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/catalog/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /pro1/catalog/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /pro1/interviews/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/noticeboard/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /pro1/noticeboard/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /pro1/study/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /pro1/year1/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /screenshots/P1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P1.PNG -------------------------------------------------------------------------------- /screenshots/P2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P2.PNG -------------------------------------------------------------------------------- /screenshots/P3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P3.PNG -------------------------------------------------------------------------------- /screenshots/P4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P4.PNG -------------------------------------------------------------------------------- /screenshots/P5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P5.PNG -------------------------------------------------------------------------------- /screenshots/P6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P6.PNG -------------------------------------------------------------------------------- /screenshots/P7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/P7.PNG -------------------------------------------------------------------------------- /screenshots/p8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/p8.png -------------------------------------------------------------------------------- /screenshots/p9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/screenshots/p9.png -------------------------------------------------------------------------------- /pro1/noticeboard/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_depreciated.scss: -------------------------------------------------------------------------------- 1 | // These settings will be only for one version 2 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/_depreciated.scss: -------------------------------------------------------------------------------- 1 | // These settings will be only for one version 2 | -------------------------------------------------------------------------------- /pro1/blog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BlogConfig(AppConfig): 5 | name = 'blog' 6 | -------------------------------------------------------------------------------- /pro1/study/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class StudyConfig(AppConfig): 5 | name = 'study' 6 | -------------------------------------------------------------------------------- /pro1/users/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UsersConfig(AppConfig): 5 | name = 'users' 6 | -------------------------------------------------------------------------------- /pro1/year1/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class Year1Config(AppConfig): 5 | name = 'year1' 6 | -------------------------------------------------------------------------------- /pro1/media/profile_pics/iSU_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/media/profile_pics/iSU_1.jpg -------------------------------------------------------------------------------- /pro1/catalog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CatalogConfig(AppConfig): 5 | name = 'catalog' 6 | -------------------------------------------------------------------------------- /pro1/interviews/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class InterviewsConfig(AppConfig): 5 | name = 'interviews' 6 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/License.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/License.pdf -------------------------------------------------------------------------------- /pro1/blog/static/blog/images/dgpicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/static/blog/images/dgpicon.png -------------------------------------------------------------------------------- /pro1/noticeboard/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class NoticeboardConfig(AppConfig): 5 | name = 'noticeboard' 6 | -------------------------------------------------------------------------------- /pro1/blog/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/blog/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/blog/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/blog/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/blog/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/blog/static/blog/images/codingBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/static/blog/images/codingBG.jpg -------------------------------------------------------------------------------- /pro1/pro1/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/pro1/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/pro1/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/pro1/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/License.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/License.pdf -------------------------------------------------------------------------------- /pro1/study/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/study/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/study/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/study/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\satya\\AppData\\Local\\Programs\\Python\\Python37-32\\python.exe" 3 | } -------------------------------------------------------------------------------- /pro1/users/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/blog/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/catalog/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/catalog/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/catalog/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/catalog/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/pro1/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/pro1/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/pro1/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/pro1/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/study/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/__pycache__/tokens.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/tokens.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/catalog/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/catalog/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/catalog/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/catalog/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/interviews/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/interviews/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/interviews/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/interviews/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/noticeboard/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/01.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/02.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/03.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/04.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/05.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/06.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/07.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/08.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/overlays/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/overlays/09.png -------------------------------------------------------------------------------- /pro1/study/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/interviews/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/noticeboard/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/noticeboard/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/noticeboard/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import Profile 5 | 6 | admin.site.register(Profile) -------------------------------------------------------------------------------- /pro1/interviews/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/noticeboard/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/staticfiles/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/01.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/02.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/03.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/04.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/05.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/06.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/07.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/08.png -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/overlays/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/overlays/09.png -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/lightbox/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/lightbox/preloader.gif -------------------------------------------------------------------------------- /pro1/staticfiles/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /pro1/blog/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/blog/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path,include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('',views.home, name='notice-home'), 6 | 7 | ] 8 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/lightbox/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/lightbox/preloader.gif -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/lightbox/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/img/lightbox/default-skin.png -------------------------------------------------------------------------------- /pro1/study/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/study/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/catalog/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/catalog/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/bootstrap/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /pro1/interviews/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/interviews/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/noticeboard/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/noticeboard/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/staticfiles/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | Weights used in this project: Light (300), Regular (400), Bold (700) 3 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/lightbox/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/img/lightbox/default-skin.png -------------------------------------------------------------------------------- /pro1/users/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/migrations/__pycache__/0004_profile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/migrations/__pycache__/0004_profile.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/staticfiles/blog/bootstrap/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /pro1/users/migrations/__pycache__/0002_auto_20181103_0240.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/migrations/__pycache__/0002_auto_20181103_0240.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/users/migrations/__pycache__/0003_auto_20181103_0246.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIT-DGPortal/StudentPortal/HEAD/pro1/users/migrations/__pycache__/0003_auto_20181103_0246.cpython-36.pyc -------------------------------------------------------------------------------- /pro1/.env.example: -------------------------------------------------------------------------------- 1 | SECRET_KEY=mn-io+8q#sju2c(z9%xyz-ibdjw#kf8@+^a#_($90q7^tex)^j 2 | DEBUG=True 3 | ALLOWED_HOSTS=.localhost, .herokuapp.com 4 | EMAIL_HOST=smtp.gmail.com 5 | EMAIL_PORT=587 6 | EMAIL_USE_TLS=True 7 | -------------------------------------------------------------------------------- /pro1/year1/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path,include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('',views.home, name='year1-home'), 6 | path('year_1_doc/',views.year_1_doc, name='first-year-doc'), 7 | 8 | ] -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_dropdowns.scss: -------------------------------------------------------------------------------- 1 | // Dropdowns 2 | .dropdown { 3 | .dropdown-menu { 4 | .dropdown-item { 5 | &:active { 6 | background-color: $grey-darken-1; 7 | } 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /pro1/year1/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | 4 | def home(request): 5 | return render(request,'year1/home.html') 6 | 7 | 8 | def year_1_doc(request): 9 | return render(request,'year1/year_1_doc.html') 10 | 11 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/_dropdowns.scss: -------------------------------------------------------------------------------- 1 | // Dropdowns 2 | .dropdown { 3 | .dropdown-menu { 4 | .dropdown-item { 5 | &:active { 6 | background-color: $grey-darken-1; 7 | } 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /pro1/users/templates/users/activation.html: -------------------------------------------------------------------------------- 1 | {% autoescape off %} 2 | Hi {{ user.username }}, 3 | 4 | Please click on the link below to confirm your registration: 5 | 6 | http://{{ domain }}{% url 'activate' uidb64=uid token=token %} 7 | {% endautoescape %} -------------------------------------------------------------------------------- /pro1/year1/templates/year1/year_1_doc.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |
Here is your sample document
4 | {% endblock content %} -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/svg/arrow_left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/svg/arrow_right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/study/templates/study/bt/bt_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ce/ce_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ch/ch_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/cs/cs_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ec/ec_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ee/ee_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/it/it_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/mm/mm_third.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/svg/arrow_left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/svg/arrow_right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/modules/animations-extended/animations-extended.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * MDBootstrap Animations Extended 3 | * Learn more: https://mdbootstrap.com/css/animations/ 4 | * About MDBootstrap: https://mdbootstrap.com/ 5 | */ 6 | 7 | @import "module"; 8 | -------------------------------------------------------------------------------- /pro1/study/templates/study/bt/bt_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/bt/bt_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ce/ce_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ce/ce_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ch/ch_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ch/ch_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/cs/cs_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/cs/cs_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ec/ec_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ec/ec_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ee/ee_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ee/ee_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/it/it_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/it/it_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/mm/mm_fourth.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/study/templates/study/mm/mm_second.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |Here is your sample document
4 | {% endblock content %} 5 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/modules/animations-extended/animations-extended.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * MDBootstrap Animations Extended 3 | * Learn more: https://mdbootstrap.com/css/animations/ 4 | * About MDBootstrap: https://mdbootstrap.com/ 5 | */ 6 | 7 | @import "module"; 8 | -------------------------------------------------------------------------------- /pro1/study/templates/study/bt/bt.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |No recent updates
11 | {% endblock content %} 12 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | notify: 3 | require_ci_to_pass: yes 4 | coverage: 5 | precision: 2 6 | round: down 7 | range: “70…100” 8 | status: 9 | project: yes 10 | patch: yes 11 | changes: no 12 | comment: 13 | layout: “reach, diff, flags, files, footer” 14 | behavior: default 15 | require_changes: no -------------------------------------------------------------------------------- /pro1/blog/templates/blog/home.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 | 4 | 5 | {% if title %} 6 |In blog Home
12 |The confirmation link was invalid, possibly because it has already been used.
11 | {% endblock %} -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/requirements.txt: -------------------------------------------------------------------------------- 1 | certifi==2018.11.29 2 | chardet==3.0.4 3 | confusable-homoglyphs==3.2.0 4 | dj-database-url==0.5.0 5 | Django==2.1.4 6 | django-crispy-forms==1.7.2 7 | django-heroku==0.3.1 8 | django-registration==3.0 9 | gunicorn==19.9.0 10 | idna==2.7 11 | psycopg2==2.7.6.1 12 | python-decouple==3.1 13 | pytz==2018.7 14 | requests==2.20.1 15 | urllib3==1.24.1 16 | whitenoise==4.1.2 17 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(b){b.fn.prepopulate=function(d,f,g){return this.each(function(){var a=b(this),h=function(){if(!a.data("_changed")){var e=[];b.each(d,function(a,c){c=b(c);0Here is your sample document
13 | {% endblock content %} -------------------------------------------------------------------------------- /pro1/users/templates/users/profile.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 5 | {% if title %} 6 |Please confirm your email address to complete the registration.
11 | Click here to continue 12 | {% endblock %} -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_footers.scss: -------------------------------------------------------------------------------- 1 | // Footers 2 | footer { 3 | &.page-footer { 4 | bottom: 0; 5 | color: $white-base; 6 | .container-fluid { 7 | width: auto; 8 | } 9 | .footer-copyright { 10 | overflow: hidden; 11 | background-color: $footer-copyright-bg-color; 12 | color: $footer-copyright-color; 13 | } 14 | a { 15 | color: $white-base; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | matrix: 3 | include: 4 | - python: 3.7 5 | dist: xenial 6 | sudo: true 7 | env: 8 | - DJANGO=2.1.3 9 | cache: 10 | - pip3 11 | install: 12 | - pip3 install -r pro1/requirements.txt 13 | - pip3 install codecov 14 | before_script: 15 | - cp pro1/.env.example pro1/.env 16 | script: 17 | - python3 pro1/manage.py 18 | - coverage run pro1/manage.py 19 | after_success: 20 | - codecov -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/_footers.scss: -------------------------------------------------------------------------------- 1 | // Footers 2 | footer { 3 | &.page-footer { 4 | bottom: 0; 5 | color: $white-base; 6 | .container-fluid { 7 | width: auto; 8 | } 9 | .footer-copyright { 10 | overflow: hidden; 11 | background-color: $footer-copyright-bg-color; 12 | color: $footer-copyright-color; 13 | } 14 | a { 15 | color: $white-base; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_badges.scss: -------------------------------------------------------------------------------- 1 | // Badges 2 | .badge { 3 | box-shadow: $z-depth-1; 4 | border-radius: $border-radius-base; 5 | color: $white !important; 6 | } 7 | .badge-pill { 8 | border-radius: $badge-pill-border-radius; 9 | padding-right: $badge-pill-padding-x; 10 | padding-left: $badge-pill-padding-x; 11 | } 12 | @each $name, $color in $basic-mdb-colors { 13 | @include make-badge($name, $color); 14 | } 15 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/_badges.scss: -------------------------------------------------------------------------------- 1 | // Badges 2 | .badge { 3 | box-shadow: $z-depth-1; 4 | border-radius: $border-radius-base; 5 | color: $white !important; 6 | } 7 | .badge-pill { 8 | border-radius: $badge-pill-border-radius; 9 | padding-right: $badge-pill-padding-x; 10 | padding-left: $badge-pill-padding-x; 11 | } 12 | @each $name, $color in $basic-mdb-colors { 13 | @include make-badge($name, $color); 14 | } 15 | -------------------------------------------------------------------------------- /pro1/users/templates/users/password_reset_done.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 5 | {% if title %} 6 |This portal is meant for students of NIT Durgapur for keeping up-to-date information about academics, placements, 13 | internships and all other major updates
14 | 15 |Students can find all the study materials in this portal
16 |Register yourself to get started
17 | {% endblock content %} -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-no.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == '__main__': 6 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pro1.settings') 7 | try: 8 | from django.core.management import execute_from_command_line 9 | except ImportError as exc: 10 | raise ImportError( 11 | "Couldn't import Django. Are you sure it's installed and " 12 | "available on your PYTHONPATH environment variable? Did you " 13 | "forget to activate a virtual environment?" 14 | ) from exc 15 | execute_from_command_line(sys.argv) 16 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/README.txt: -------------------------------------------------------------------------------- 1 | Material Design for Bootstrap 2 | 3 | version: MDB Free 4.5.13 4 | 5 | Documentation: 6 | https://mdbootstrap.com/ 7 | 8 | Getting started: 9 | https://mdbootstrap.com/getting-started/ 10 | 11 | Tutorials: 12 | MDB-Bootstrap: https://mdbootstrap.com/education/bootstrap/ 13 | MDB-Wordpress: https://mdbootstrap.com/wordpress-tutorial/ 14 | 15 | Templates: 16 | https://mdbootstrap.com/templates/ 17 | 18 | License: 19 | https://mdbootstrap.com/license/ 20 | 21 | Support: 22 | https://mdbootstrap.com/forums/forum/support/ 23 | 24 | Contact: 25 | office@mdbootstrap.com 26 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/README.txt: -------------------------------------------------------------------------------- 1 | Material Design for Bootstrap 2 | 3 | version: MDB Free 4.5.13 4 | 5 | Documentation: 6 | https://mdbootstrap.com/ 7 | 8 | Getting started: 9 | https://mdbootstrap.com/getting-started/ 10 | 11 | Tutorials: 12 | MDB-Bootstrap: https://mdbootstrap.com/education/bootstrap/ 13 | MDB-Wordpress: https://mdbootstrap.com/wordpress-tutorial/ 14 | 15 | Templates: 16 | https://mdbootstrap.com/templates/ 17 | 18 | License: 19 | https://mdbootstrap.com/license/ 20 | 21 | Support: 22 | https://mdbootstrap.com/forums/forum/support/ 23 | 24 | Contact: 25 | office@mdbootstrap.com 26 | -------------------------------------------------------------------------------- /pro1/users/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | from django.contrib.auth.models import User 3 | from django.db.models.signals import post_save 4 | from django.dispatch import receiver 5 | 6 | class Profile(models.Model): 7 | user = models.OneToOneField(User, on_delete=models.CASCADE) 8 | email_confirmed = models.BooleanField(default=False) 9 | 10 | def __str__(self): 11 | return f'{self.user.username} Profile' 12 | 13 | def create_user_profile(sender, instance, created, **kwargs): 14 | if created: 15 | Profile.objects.create(user=instance) 16 | 17 | post_save.connect(create_user_profile, sender=User) -------------------------------------------------------------------------------- /pro1/blog/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | from django.http import HttpResponse 3 | from django.contrib.auth.decorators import login_required 4 | # Create your views here. 5 | 6 | 7 | 8 | 9 | @login_required(redirect_field_name='') 10 | def home(request): 11 | return render(request,'blog/home.html') 12 | 13 | def contact(request): 14 | return render(request,'blog/contact.html') 15 | 16 | def about(request): 17 | return render(request,'blog/about.html') 18 | 19 | def contributor(request): 20 | return render(request, 'blog/contributor.html') 21 | 22 | def medium(request): 23 | return render(request, 'blog/gitCard/medium.html') -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/popup_response.js: -------------------------------------------------------------------------------- 1 | /*global opener */ 2 | (function() { 3 | 'use strict'; 4 | var initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); 5 | switch(initData.action) { 6 | case 'change': 7 | opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); 8 | break; 9 | case 'delete': 10 | opener.dismissDeleteRelatedObjectPopup(window, initData.value); 11 | break; 12 | default: 13 | opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); 14 | break; 15 | } 16 | })(); 17 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/users/migrations/0002_auto_20181103_0240.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 2.1.3 on 2018-11-02 21:10 2 | 3 | from django.db import migrations 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('users', '0001_initial'), 10 | ] 11 | 12 | operations = [ 13 | migrations.RemoveField( 14 | model_name='profile', 15 | name='bio', 16 | ), 17 | migrations.RemoveField( 18 | model_name='profile', 19 | name='birth_date', 20 | ), 21 | migrations.RemoveField( 22 | model_name='profile', 23 | name='location', 24 | ), 25 | ] 26 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_cards.scss: -------------------------------------------------------------------------------- 1 | // Cards 2 | .card { 3 | box-shadow: $z-depth-1; 4 | border: 0; 5 | font-weight: 400; 6 | &[class*="border"] { 7 | border: 1px solid $grey-base; 8 | box-shadow: none; 9 | } 10 | .card-body { 11 | h1, h2, h3, h4, h5, h6 { 12 | font-weight: 400; 13 | } 14 | .card-title { 15 | a { 16 | transition: $md-card-link-transition; 17 | &:hover { 18 | transition: $md-card-link-transition; 19 | } 20 | } 21 | } 22 | .card-text { 23 | color: $md-card-text-color; 24 | font-size: $md-card-font-size; 25 | font-weight: 400; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/_cards.scss: -------------------------------------------------------------------------------- 1 | // Cards 2 | .card { 3 | box-shadow: $z-depth-1; 4 | border: 0; 5 | font-weight: 400; 6 | &[class*="border"] { 7 | border: 1px solid $grey-base; 8 | box-shadow: none; 9 | } 10 | .card-body { 11 | h1, h2, h3, h4, h5, h6 { 12 | font-weight: 400; 13 | } 14 | .card-title { 15 | a { 16 | transition: $md-card-link-transition; 17 | &:hover { 18 | transition: $md-card-link-transition; 19 | } 20 | } 21 | } 22 | .card-text { 23 | color: $md-card-text-color; 24 | font-size: $md-card-font-size; 25 | font-weight: 400; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List group 2 | .media { 3 | .media-left { 4 | padding: $list-group-padding; 5 | img { 6 | box-shadow: $z-depth-1; 7 | } 8 | } 9 | } 10 | .list-group { 11 | .list-group-item { 12 | &:first-child { 13 | border-top-left-radius: $border-radius-base; 14 | border-top-right-radius: $border-radius-base; 15 | } 16 | &:last-child { 17 | border-bottom-left-radius: $border-radius-base; 18 | border-bottom-right-radius: $border-radius-base; 19 | } 20 | } 21 | a, 22 | button { 23 | transition: $list-group-transition; 24 | &:hover { 25 | transition: $list-group-transition; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /pro1/users/templates/users/password_reset_confirm.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 5 | {% if title %} 6 |MDB Team
29 |