├── 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/img/svg/arrow_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/img/svg/arrow_right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ce/ce.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ch/ch.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/cs/cs.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ec/ec.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/ee/ee.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/it/it.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/study/templates/study/mm/mm.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 9 | {% endblock content %} 10 | -------------------------------------------------------------------------------- /pro1/interviews/ee.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 |

Year of Study

4 | 10 | {% endblock content %} 11 | -------------------------------------------------------------------------------- /pro1/noticeboard/templates/noticeboard/home.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 | 4 | {% if title %} 5 | {{ post.title }} 6 | {% else %} 7 | Noticeboard 8 | {% endif %} 9 | 10 |

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 | {{ post.title }} 7 | {% else %} 8 | Home 9 | {% endif %} 10 | 11 |

In blog Home

12 |








13 | {% endblock content %} -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | url = "https://pypi.org/simple" 3 | verify_ssl = true 4 | name = "pypi" 5 | 6 | [packages] 7 | django = "*" 8 | gunicorn = "*" 9 | django-heroku = "*" 10 | django-crispy-forms = "*" 11 | django-registration = "*" 12 | requests = "*" 13 | 14 | [dev-packages] 15 | 16 | [requires] 17 | python_version = "3.7" 18 | -------------------------------------------------------------------------------- /pro1/interviews/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | 3 | from . import views 4 | 5 | urlpatterns = [ 6 | path('', views.home, name='interview-home'), 7 | path('internship//', 8 | views.internship, name='internship'), 9 | path('placement//', views.placement, name='placement'), 10 | ] 11 | -------------------------------------------------------------------------------- /pro1/users/templates/users/invalid_registration.html: -------------------------------------------------------------------------------- 1 | {% extends 'blog/base.html' %} 2 | {% block content %} 3 | 4 | {% if title %} 5 | {{ post.title }} 6 | {% else %} 7 | Student Portal 8 | {% endif %} 9 | 10 |

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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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);0 4 | {% if title %} 5 | {{ post.title }} 6 | {% else %} 7 | StudyZone 8 | {% endif %} 9 | 10 |

Welcome First Years!

11 |

This is your Study Zone

12 |

Here 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 | {{ post.title }} 7 | {% else %} 8 | Profile 9 | {% endif %} 10 | 11 |

{{ user.username }}

12 |

{{ user.email }}

13 |

{{ user.first_name }} {{ user.last_name }}

14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global django:true, jQuery:false*/ 2 | /* Puts the included jQuery into our own namespace using noConflict and passing 3 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 4 | * namespace (i.e. this preserves pre-existing values for both window.$ and 5 | * window.jQuery). 6 | */ 7 | var django = django || {}; 8 | django.jQuery = jQuery.noConflict(true); 9 | -------------------------------------------------------------------------------- /pro1/users/templates/users/mail_sent.html: -------------------------------------------------------------------------------- 1 | {% extends 'blog/base.html' %} 2 | {% block content %} 3 | 4 | {% if title %} 5 | {{ post.title }} 6 | {% else %} 7 | Student Portal 8 | {% endif %} 9 | 10 |

Please confirm your email address to complete the registration.

11 | Click here to continue 12 | {% endblock %} -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | {{ post.title }} 7 | {% else %} 8 | Student Portal 9 | {% endif %} 10 | 11 |
12 | An email has been sent with further instructions to reset your password. 13 |
14 | {% endblock content %} 15 | -------------------------------------------------------------------------------- /pro1/users/templates/users/password_reset_complete.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 5 | {% if title %} 6 | {{ post.title }} 7 | {% else %} 8 | Student Portal 9 | {% endif %} 10 | 11 |
12 | Password reset Successful! 13 |
14 | Login 15 | {% endblock content %} 16 | -------------------------------------------------------------------------------- /pro1/pro1/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for pro1 project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pro1.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/users/tokens.py: -------------------------------------------------------------------------------- 1 | from django.contrib.auth.tokens import PasswordResetTokenGenerator 2 | from django.utils import six 3 | 4 | class AccountActivationTokenGenerator(PasswordResetTokenGenerator): 5 | def _make_hash_value(self, user, timestamp): 6 | return ( 7 | six.text_type(user.pk) + six.text_type(timestamp) + 8 | six.text_type(user.profile.email_confirmed) 9 | ) 10 | 11 | account_activation_token = AccountActivationTokenGenerator() -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/cancel.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | $(function() { 4 | $('.cancel-link').on('click', function(e) { 5 | e.preventDefault(); 6 | if (window.location.search.indexOf('&_popup=1') === -1) { 7 | window.history.back(); // Go back if not a popup. 8 | } else { 9 | window.close(); // Otherwise, close the popup. 10 | } 11 | }); 12 | }); 13 | })(django.jQuery); 14 | -------------------------------------------------------------------------------- /pro1/users/templates/users/logout.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 5 | {% if title %} 6 | {{ post.title }} 7 | {% else %} 8 | Student Portal 9 | {% endif %} 10 | 11 |

You have been logged out of the System

12 |
13 | 14 | Log In 15 | 16 |
17 | 18 | {% endblock content %} 19 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | ### All Submissions: 2 | 3 | * [ ] Have you followed the guidelines in our Contributing document? 4 | 5 | ### New Feature Submissions: 6 | 7 | 1. [ ] Does your submission pass build tests locally? 8 | 2. [ ] Have you indented your code locally prior to submission? 9 | 10 | ### Changes to Core Features: 11 | 12 | * [ ] Have you added an explanation of what your changes do and why you'd like us to include them? 13 | * [ ] Have you successfully ran tests with your changes locally? 14 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/js/modules/scrolling-navbar.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | (function ($) { 4 | let SCROLLING_NAVBAR_OFFSET_TOP = 50; 5 | $(window).on('scroll', function () { 6 | let $navbar = $('.navbar'); 7 | 8 | if ($navbar.length) { 9 | if ($navbar.offset().top > SCROLLING_NAVBAR_OFFSET_TOP) { 10 | $('.scrolling-navbar').addClass('top-nav-collapse'); 11 | } else { 12 | $('.scrolling-navbar').removeClass('top-nav-collapse'); 13 | } 14 | } 15 | }); 16 | })(jQuery); -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/js/modules/scrolling-navbar.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | (function ($) { 4 | let SCROLLING_NAVBAR_OFFSET_TOP = 50; 5 | $(window).on('scroll', function () { 6 | let $navbar = $('.navbar'); 7 | 8 | if ($navbar.length) { 9 | if ($navbar.offset().top > SCROLLING_NAVBAR_OFFSET_TOP) { 10 | $('.scrolling-navbar').addClass('top-nav-collapse'); 11 | } else { 12 | $('.scrolling-navbar').removeClass('top-nav-collapse'); 13 | } 14 | } 15 | }); 16 | })(jQuery); -------------------------------------------------------------------------------- /pro1/users/migrations/0003_auto_20181103_0246.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 2.1.3 on 2018-11-02 21:16 2 | 3 | from django.db import migrations 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('users', '0002_auto_20181103_0240'), 10 | ] 11 | 12 | operations = [ 13 | migrations.RemoveField( 14 | model_name='profile', 15 | name='user', 16 | ), 17 | migrations.DeleteModel( 18 | name='Profile', 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/css/fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto'; 3 | src: url('../fonts/Roboto-Bold-webfont.woff'); 4 | font-weight: 700; 5 | font-style: normal; 6 | } 7 | 8 | @font-face { 9 | font-family: 'Roboto'; 10 | src: url('../fonts/Roboto-Regular-webfont.woff'); 11 | font-weight: 400; 12 | font-style: normal; 13 | } 14 | 15 | @font-face { 16 | font-family: 'Roboto'; 17 | src: url('../fonts/Roboto-Light-webfont.woff'); 18 | font-weight: 300; 19 | font-style: normal; 20 | } 21 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/free/_input-group.scss: -------------------------------------------------------------------------------- 1 | // Input group 2 | .md-form { 3 | &.input-group { 4 | label { 5 | top: 0; 6 | margin-bottom: 0; 7 | } 8 | .input-group-text { 9 | background-color: $input-group-text-bgc; 10 | &.md-addon { 11 | border: none; 12 | background-color: transparent; 13 | font-weight: 500; 14 | } 15 | } 16 | .form-control { 17 | margin: 0; 18 | padding: $input-group-form-control-py $input-group-form-control-px; 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/free/_input-group.scss: -------------------------------------------------------------------------------- 1 | // Input group 2 | .md-form { 3 | &.input-group { 4 | label { 5 | top: 0; 6 | margin-bottom: 0; 7 | } 8 | .input-group-text { 9 | background-color: $input-group-text-bgc; 10 | &.md-addon { 11 | border: none; 12 | background-color: transparent; 13 | font-weight: 500; 14 | } 15 | } 16 | .form-control { 17 | margin: 0; 18 | padding: $input-group-form-control-py $input-group-form-control-px; 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /pro1/staticfiles/admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | /* DASHBOARD */ 2 | 3 | .dashboard .module table th { 4 | width: 100%; 5 | } 6 | 7 | .dashboard .module table td { 8 | white-space: nowrap; 9 | } 10 | 11 | .dashboard .module table td a { 12 | display: block; 13 | padding-right: .6em; 14 | } 15 | 16 | /* RECENT ACTIONS MODULE */ 17 | 18 | .module ul.actionlist { 19 | margin-left: 0; 20 | } 21 | 22 | ul.actionlist li { 23 | list-style-type: none; 24 | overflow: hidden; 25 | text-overflow: ellipsis; 26 | -o-text-overflow: ellipsis; 27 | } 28 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | var fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields'); 4 | $.each(fields, function(index, field) { 5 | $('.empty-form .form-row .field-' + field.name + ', .empty-form.form-row .field-' + field.name).addClass('prepopulated_field'); 6 | $(field.id).data('dependency_list', field.dependency_list).prepopulate( 7 | field.dependency_ids, field.maxLength, field.allowUnicode 8 | ); 9 | }); 10 | })(django.jQuery); 11 | -------------------------------------------------------------------------------- /pro1/blog/templates/blog/about.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 | 4 | 5 | {% if title %} 6 | {{ post.title }} 7 | {% else %} 8 | About 9 | {% endif %} 10 | 11 |

Description

12 |

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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 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 | 2 | 3 | 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 | 2 | 3 | 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 | {{ post.title }} 7 | {% else %} 8 | Student Portal 9 | {% endif %} 10 | 11 |
12 |
13 | {% csrf_token %} 14 |
15 | Password Reset 16 | {{ form|crispy }} 17 |
18 |
19 | 20 |
21 |
22 |
23 | {% endblock content %} 24 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/fi.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/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/blog/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.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 11 |
12 |
13 | {% csrf_token %} 14 |
15 | Password Reset 16 | {{ form|crispy }} 17 |
18 |
19 | 20 |
21 |
22 |
23 | {% endblock content %} 24 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/ja.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/ja",[],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/blog/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path,include 2 | from . import views 3 | from django.contrib.auth import views as auth_views 4 | 5 | urlpatterns = [ 6 | path('',auth_views.LoginView.as_view(template_name='users/login.html'),name='login'), 7 | #path('', views.home, name='blog-home'), 8 | path('about/',views.about, name='blog-about'), 9 | path('home/', views.home, name='blog-home'), 10 | path('contact/',views.contact, name='blog-contact'), 11 | path('contributors/', views.contributor, name='blog-contributor'), 12 | path('noticeboard/', include('noticeboard.urls')), 13 | path('study/',include('study.urls')), 14 | path('interviews/',include('interviews.urls')), 15 | path('contributors/cards/medium.html', views.medium), 16 | ] 17 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/hu.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/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/tr.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/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/ko.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/ko",[],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/th.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/th",[],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/noticeboard/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 | posts = [ # list of dictionaries 8 | { 9 | 'author' : 'MonsijBiswal', 10 | 'title' : 'Initial Post', 11 | 'content' : 'The first notice', 12 | 'date_posted' : 'October 29, 2018' 13 | }, 14 | 15 | { 16 | 'author' : 'MonsijBiswal', 17 | 'title' : 'Second Post', 18 | 'content' : 'An important notice', 19 | 'date_posted' : 'October 30, 2028' 20 | }, 21 | ] 22 | 23 | context = { 24 | 'posts' : posts 25 | } 26 | 27 | 28 | 29 | 30 | @login_required(redirect_field_name='') 31 | def home(request): 32 | return render(request,'noticeboard/home.html',context) 33 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/id.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/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/vi.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/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/is.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/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/ar.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/ar",[],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/de.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/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/et.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/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/sv.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/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/bg.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/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/km.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/km",[],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/nb.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/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/ms.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/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/change_form.js: -------------------------------------------------------------------------------- 1 | /*global showAddAnotherPopup, showRelatedObjectLookupPopup showRelatedObjectPopup updateRelatedObjectLinks*/ 2 | 3 | (function($) { 4 | 'use strict'; 5 | $(document).ready(function() { 6 | var modelName = $('#django-admin-form-add-constants').data('modelName'); 7 | $('body').on('click', '.add-another', function(e) { 8 | e.preventDefault(); 9 | var event = $.Event('django:add-another-related'); 10 | $(this).trigger(event); 11 | if (!event.isDefaultPrevented()) { 12 | showAddAnotherPopup(this); 13 | } 14 | }); 15 | 16 | if (modelName) { 17 | $('form#' + modelName + '_form :input:visible:enabled:first').focus(); 18 | } 19 | }); 20 | })(django.jQuery); 21 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/gl.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/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/da.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/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/js/modules/enhanced-modals.js: -------------------------------------------------------------------------------- 1 | /* 2 | Enhanced Bootstrap Modals 3 | https://mdbootstrap.com 4 | office@mdbootstrap.com 5 | */ 6 | 7 | $('body').on('shown.bs.modal', '.modal', function() { 8 | if($('.modal-backdrop').length) { 9 | } else { 10 | 11 | $modal_dialog = $(this).children('.modal-dialog') 12 | 13 | if($modal_dialog.hasClass('modal-side')) { 14 | $(this).addClass('modal-scrolling'); 15 | $('body').addClass('scrollable'); 16 | } 17 | 18 | if($modal_dialog.hasClass('modal-frame')) { 19 | $(this).addClass('modal-content-clickable'); 20 | $('body').addClass('scrollable'); 21 | } 22 | } 23 | }); 24 | $('body').on('hidden.bs.modal', '.modal', function() { 25 | $('body').removeClass('scrollable'); 26 | }); -------------------------------------------------------------------------------- /pro1/study/templates/study/home.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% block content %} 3 | 4 | {% if title %} 5 | {{ post.title }} 6 | {% else %} 7 | StudyZone 8 | {% endif %} 9 | 10 |

Departments

11 | 22 | {% endblock content %} 23 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/js/modules/enhanced-modals.js: -------------------------------------------------------------------------------- 1 | /* 2 | Enhanced Bootstrap Modals 3 | https://mdbootstrap.com 4 | office@mdbootstrap.com 5 | */ 6 | 7 | $('body').on('shown.bs.modal', '.modal', function() { 8 | if($('.modal-backdrop').length) { 9 | } else { 10 | 11 | $modal_dialog = $(this).children('.modal-dialog') 12 | 13 | if($modal_dialog.hasClass('modal-side')) { 14 | $(this).addClass('modal-scrolling'); 15 | $('body').addClass('scrollable'); 16 | } 17 | 18 | if($modal_dialog.hasClass('modal-frame')) { 19 | $(this).addClass('modal-content-clickable'); 20 | $('body').addClass('scrollable'); 21 | } 22 | } 23 | }); 24 | $('body').on('hidden.bs.modal', '.modal', function() { 25 | $('body').removeClass('scrollable'); 26 | }); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/en.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/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/he.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/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/hi.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/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),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/fa.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/fa",[],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/hr.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/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/mk.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/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/eu.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/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/pt-BR.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/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/pt.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/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/lv.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/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/es.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/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/ca.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/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/it.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/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/fr.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/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/ro.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/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+"sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/nl.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/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/lt.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/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/vendor/select2/i18n/pl.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/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /pro1/users/migrations/0004_profile.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 2.1.3 on 2018-11-03 09:16 2 | 3 | from django.conf import settings 4 | from django.db import migrations, models 5 | import django.db.models.deletion 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | initial = True 11 | 12 | dependencies = [ 13 | migrations.swappable_dependency(settings.AUTH_USER_MODEL), 14 | ('users', '0003_auto_20181103_0246'), 15 | ] 16 | 17 | operations = [ 18 | migrations.CreateModel( 19 | name='Profile', 20 | fields=[ 21 | ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), 22 | ('email_confirmed', models.BooleanField(default=False)), 23 | ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), 24 | ], 25 | ), 26 | ] 27 | -------------------------------------------------------------------------------- /pro1/users/templates/users/register.html: -------------------------------------------------------------------------------- 1 | {% extends "blog/base.html" %} 2 | {% load crispy_forms_tags %} 3 | {% block content %} 4 | 5 | {% if title %} 6 | {{ post.title }} 7 | {% else %} 8 | Student Portal 9 | {% endif %} 10 | 11 |
12 |
13 | {% csrf_token %} 14 |
15 | Register Here 16 | {{ form|crispy }} 17 |
18 |
19 | 20 | 21 |
22 |
23 |
24 | 25 | Already on board? Sign In 26 | 27 |
28 | 29 |
30 | {% endblock content %} 31 | 32 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |

Material Design for Bootstrap

25 | 26 |
Thank you for using our product. We're glad you're with us.
27 | 28 |

MDB Team

29 |
30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /pro1/interviews/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Internship, Department, Placement 3 | 4 | # Register your models here. 5 | 6 | 7 | class InternshipAdmin(admin.ModelAdmin): 8 | def get_status(self, obj): 9 | return obj.get_status_display() 10 | 11 | get_status.short_description = 'Status' 12 | list_display = ('company_name', 13 | 'departments', 14 | 'job_designation', 15 | 'qualification_needed', 16 | 'last_date_to_apply', 17 | 'test_location', 18 | 'salary_offered', 19 | 'person_of_contact', 20 | 'email_id', 21 | 'phone_no', 22 | 'form_link', 23 | 'get_status', 24 | 'other_details',) 25 | 26 | 27 | class PlacementAdmin(admin.ModelAdmin): 28 | def get_status(self, obj): 29 | return obj.get_status_display() 30 | 31 | get_status.short_description = 'Status' 32 | list_display = ('company_name', 33 | 'expected_salary', 34 | 'departments', 35 | 'job_designation', 36 | 'qualification_needed', 37 | 'last_date_to_apply', 38 | 'form_link', 39 | 'get_status', 40 | 'interview_or_test_location', 41 | 'additional_documents', 42 | 'additional_information',) 43 | 44 | 45 | admin.site.register(Department) 46 | admin.site.register(Internship, InternshipAdmin) 47 | admin.site.register(Placement, PlacementAdmin) 48 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/collapse.min.js: -------------------------------------------------------------------------------- 1 | var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(a,c,b){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e'+gettext("Show")+")")});a("fieldset.collapse a.collapse-toggle").on("click",function(c){a(this).closest("fieldset").hasClass("collapsed")?a(this).text(gettext("Hide")).closest("fieldset").removeClass("collapsed").trigger("show.fieldset",[a(this).attr("id")]): 5 | a(this).text(gettext("Show")).closest("fieldset").addClass("collapsed").trigger("hide.fieldset",[a(this).attr("id")]);return!1})})})(django.jQuery); 6 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Material Design Bootstrap 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |

Material Design for Bootstrap

25 | 26 |
Thank you for using our product. We're glad you're with us.
27 | 28 |

MDB Team

29 |
30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /pro1/staticfiles/admin/js/prepopulate.js: -------------------------------------------------------------------------------- 1 | /*global URLify*/ 2 | (function($) { 3 | 'use strict'; 4 | $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) { 5 | /* 6 | Depends on urlify.js 7 | Populates a selected field with the values of the dependent fields, 8 | URLifies and shortens the string. 9 | dependencies - array of dependent fields ids 10 | maxLength - maximum length of the URLify'd string 11 | allowUnicode - Unicode support of the URLify'd string 12 | */ 13 | return this.each(function() { 14 | var prepopulatedField = $(this); 15 | 16 | var populate = function() { 17 | // Bail if the field's value has been changed by the user 18 | if (prepopulatedField.data('_changed')) { 19 | return; 20 | } 21 | 22 | var values = []; 23 | $.each(dependencies, function(i, field) { 24 | field = $(field); 25 | if (field.val().length > 0) { 26 | values.push(field.val()); 27 | } 28 | }); 29 | prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode)); 30 | }; 31 | 32 | prepopulatedField.data('_changed', false); 33 | prepopulatedField.on('change', function() { 34 | prepopulatedField.data('_changed', true); 35 | }); 36 | 37 | if (!prepopulatedField.val()) { 38 | $(dependencies.join(',')).on('keyup change focus', populate); 39 | } 40 | }); 41 | }; 42 | })(django.jQuery); 43 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #fafafa; 3 | color: #333333; 4 | margin-top: 5rem; 5 | } 6 | 7 | h1, h2, h3, h4, h5, h6 { 8 | color: #444444; 9 | } 10 | 11 | ul { 12 | margin: 0; 13 | } 14 | 15 | .bg-steel { 16 | background-color: #5f788a; 17 | } 18 | 19 | .site-header .navbar-nav .nav-link { 20 | color: #cbd5db; 21 | } 22 | 23 | .site-header .navbar-nav .nav-link:hover { 24 | color: #ffffff; 25 | } 26 | 27 | .site-header .navbar-nav .nav-link.active { 28 | font-weight: 500; 29 | } 30 | 31 | .content-section { 32 | background: #ffffff; 33 | padding: 10px 20px; 34 | border: 1px solid #dddddd; 35 | border-radius: 3px; 36 | margin-bottom: 20px; 37 | } 38 | 39 | .article-title { 40 | color: #444444; 41 | } 42 | 43 | a.article-title:hover { 44 | color: #428bca; 45 | text-decoration: none; 46 | } 47 | 48 | .article-content { 49 | white-space: pre-line; 50 | } 51 | 52 | .article-img { 53 | height: 65px; 54 | width: 65px; 55 | margin-right: 16px; 56 | } 57 | 58 | .article-metadata { 59 | padding-bottom: 1px; 60 | margin-bottom: 4px; 61 | border-bottom: 1px solid #e3e3e3 62 | } 63 | 64 | .article-metadata a:hover { 65 | color: #333; 66 | text-decoration: none; 67 | } 68 | 69 | .article-svg { 70 | width: 25px; 71 | height: 25px; 72 | vertical-align: middle; 73 | } 74 | 75 | .account-img { 76 | height: 125px; 77 | width: 125px; 78 | margin-right: 20px; 79 | margin-bottom: 16px; 80 | } 81 | 82 | .account-heading { 83 | font-size: 2.5rem; 84 | } 85 | 86 | footer.page-footer { 87 | bottom: 0; 88 | color: #fff; } 89 | footer.page-footer .container-fluid { 90 | width: auto; } 91 | footer.page-footer .footer-copyright { 92 | overflow: hidden; 93 | background-color: rgba(0, 0, 0, 0.2); 94 | color: rgba(255, 255, 255, 0.6); } 95 | footer.page-footer a { 96 | color: #fff; } 97 | -------------------------------------------------------------------------------- /pro1/staticfiles/bootstrap/scss/mdb.lite.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Material Design for Bootstrap 4 3 | * Version: MDB Lite 4.5.13 4 | * 5 | * 6 | * Copyright: Material Design for Bootstrap 7 | * https://mdbootstrap.com/ 8 | * 9 | * Read the license: https://mdbootstrap.com/license/ 10 | * 11 | * 12 | * Documentation: https://mdbootstrap.com/ 13 | * 14 | * Getting started: https://mdbootstrap.com/getting-started/ 15 | * 16 | * Tutorials: https://mdbootstrap.com/education/bootstrap/ 17 | * 18 | * Templates: https://mdbootstrap.com/templates/ 19 | * 20 | * Support: https://mdbootstrap.com/support/ 21 | * 22 | * Contact: office@mdbootstrap.com 23 | * 24 | * Atribution: Animate CSS, Twitter Bootstrap, Materialize CSS, Normalize CSS, Waves JS, WOW JS, Toastr, Chart.js , Hammer.js 25 | * 26 | */ 27 | 28 | @charset "UTF-8"; 29 | 30 | // Bootstrap 31 | @import "core/bootstrap/functions"; 32 | @import "core/bootstrap/variables"; 33 | 34 | // CORE 35 | @import "core/mixins"; 36 | // Your custom variables 37 | @import "custom-variables"; 38 | @import "core/colors"; 39 | @import "core/variables"; 40 | @import "core/global"; 41 | @import "core/helpers"; 42 | @import "core/typography"; 43 | @import "core/masks"; 44 | @import "core/waves"; 45 | 46 | // FREE 47 | @import "free/animations-basic"; 48 | @import "free/buttons"; 49 | @import "free/cards"; 50 | @import "free/dropdowns"; 51 | @import "free/input-group"; 52 | @import "free/navbars"; 53 | @import "free/pagination"; 54 | @import "free/badges"; 55 | @import "free/modals"; 56 | @import "free/carousels"; 57 | @import "free/forms"; 58 | @import "free/msc"; 59 | @import "free/footers"; 60 | @import "free/list-group"; 61 | @import "free/tables"; 62 | @import "free/switch"; 63 | @import "free/depreciated"; 64 | @import "free/steppers"; 65 | @import "free/loader"; 66 | 67 | // Your custom styles 68 | @import "custom-styles"; 69 | -------------------------------------------------------------------------------- /pro1/staticfiles/blog/bootstrap/scss/mdb.lite.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Material Design for Bootstrap 4 3 | * Version: MDB Lite 4.5.13 4 | * 5 | * 6 | * Copyright: Material Design for Bootstrap 7 | * https://mdbootstrap.com/ 8 | * 9 | * Read the license: https://mdbootstrap.com/license/ 10 | * 11 | * 12 | * Documentation: https://mdbootstrap.com/ 13 | * 14 | * Getting started: https://mdbootstrap.com/getting-started/ 15 | * 16 | * Tutorials: https://mdbootstrap.com/education/bootstrap/ 17 | * 18 | * Templates: https://mdbootstrap.com/templates/ 19 | * 20 | * Support: https://mdbootstrap.com/support/ 21 | * 22 | * Contact: office@mdbootstrap.com 23 | * 24 | * Atribution: Animate CSS, Twitter Bootstrap, Materialize CSS, Normalize CSS, Waves JS, WOW JS, Toastr, Chart.js , Hammer.js 25 | * 26 | */ 27 | 28 | @charset "UTF-8"; 29 | 30 | // Bootstrap 31 | @import "core/bootstrap/functions"; 32 | @import "core/bootstrap/variables"; 33 | 34 | // CORE 35 | @import "core/mixins"; 36 | // Your custom variables 37 | @import "custom-variables"; 38 | @import "core/colors"; 39 | @import "core/variables"; 40 | @import "core/global"; 41 | @import "core/helpers"; 42 | @import "core/typography"; 43 | @import "core/masks"; 44 | @import "core/waves"; 45 | 46 | // FREE 47 | @import "free/animations-basic"; 48 | @import "free/buttons"; 49 | @import "free/cards"; 50 | @import "free/dropdowns"; 51 | @import "free/input-group"; 52 | @import "free/navbars"; 53 | @import "free/pagination"; 54 | @import "free/badges"; 55 | @import "free/modals"; 56 | @import "free/carousels"; 57 | @import "free/forms"; 58 | @import "free/msc"; 59 | @import "free/footers"; 60 | @import "free/list-group"; 61 | @import "free/tables"; 62 | @import "free/switch"; 63 | @import "free/depreciated"; 64 | @import "free/steppers"; 65 | @import "free/loader"; 66 | 67 | // Your custom styles 68 | @import "custom-styles"; 69 | -------------------------------------------------------------------------------- /pro1/blog/static/blog/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #fafafa; 3 | color: #333333; 4 | margin-top: 5rem; 5 | } 6 | 7 | h1, 8 | h2, 9 | h3, 10 | h4, 11 | h5, 12 | h6 { 13 | color: #444444; 14 | } 15 | 16 | ul { 17 | margin: 0; 18 | } 19 | 20 | .bg-steel { 21 | background-color: #5f788a; 22 | } 23 | 24 | .site-header .navbar-nav .nav-link { 25 | color: #cbd5db; 26 | } 27 | 28 | .site-header .navbar-nav .nav-link:hover { 29 | color: #ffffff; 30 | } 31 | 32 | .site-header .navbar-nav .nav-link.active { 33 | font-weight: 500; 34 | } 35 | 36 | .content-section { 37 | background: #ffffff; 38 | padding: 10px 20px; 39 | border: 1px solid #dddddd; 40 | border-radius: 3px; 41 | margin-bottom: 20px; 42 | } 43 | 44 | .article-title { 45 | color: #444444; 46 | } 47 | 48 | a.article-title:hover { 49 | color: #428bca; 50 | text-decoration: none; 51 | } 52 | 53 | .article-content { 54 | white-space: pre-line; 55 | } 56 | 57 | .article-img { 58 | height: 65px; 59 | width: 65px; 60 | margin-right: 16px; 61 | } 62 | 63 | .article-metadata { 64 | padding-bottom: 1px; 65 | margin-bottom: 4px; 66 | border-bottom: 1px solid #e3e3e3 67 | } 68 | 69 | .article-metadata a:hover { 70 | color: #333; 71 | text-decoration: none; 72 | } 73 | 74 | .article-svg { 75 | width: 25px; 76 | height: 25px; 77 | vertical-align: middle; 78 | } 79 | 80 | .account-img { 81 | height: 125px; 82 | width: 125px; 83 | margin-right: 20px; 84 | margin-bottom: 16px; 85 | } 86 | 87 | .account-heading { 88 | font-size: 2.5rem; 89 | } 90 | 91 | .img-circle { 92 | border-radius: 50%; 93 | width: 30%; 94 | height: 30%; 95 | } 96 | 97 | .display-left { 98 | width: 50%; 99 | float: left; 100 | } 101 | 102 | .display-right { 103 | width: 50%; 104 | float: right; 105 | } --------------------------------------------------------------------------------