├── LICENSE ├── README.md ├── certificate.pem ├── manage.py ├── myproject ├── __init__.pyc ├── settings.py ├── settings.pyc ├── settings.py~ ├── urls.py ├── urls.pyc ├── urls.py~ ├── wsgi.py └── wsgi.pyc ├── polls ├── UsingWithoutModels ├── UsingWithoutModels~ ├── __init__.pyc ├── admin.py ├── admin.pyc ├── admin.py~ ├── apps.py ├── apps.pyc ├── migrations │ ├── 0001_initial.py │ ├── 0001_initial.pyc │ ├── __init__.py │ └── __init__.pyc ├── models.py ├── models.pyc ├── models.py~ ├── sfaafs.py ├── templates │ └── polls │ │ ├── detail.html │ │ ├── detail.html~ │ │ ├── index.html │ │ ├── index.html~ │ │ ├── results.html │ │ ├── test.html │ │ └── test.html~ ├── tests.py ├── urls.py ├── urls.pyc ├── urls.py~ ├── views.py ├── views.pyc └── views.py~ ├── project_management ├── __init__.pyc ├── admin.py ├── admin.pyc ├── apps.py ├── apps.pyc ├── migrations │ ├── __init__.py │ └── __init__.pyc ├── models.py ├── models.pyc ├── templates │ └── project_management │ │ ├── adddoc.html │ │ ├── addemployee.html │ │ ├── addemployee.html~ │ │ ├── addpanel.html │ │ ├── addstudent.html │ │ ├── addstudent.html~ │ │ ├── addstudentranged.html │ │ ├── addstudentranged.html~ │ │ ├── admin.html │ │ ├── admin.html~ │ │ ├── adminlogin.html │ │ ├── adminlogin.html~ │ │ ├── assigngrades.html │ │ ├── assignpanel.html │ │ ├── assignproject.html │ │ ├── attend.html │ │ ├── changecheckpoint.html │ │ ├── employeedetail.html │ │ ├── employeedetail.html~ │ │ ├── employeelogin.html │ │ ├── employeelogin.html~ │ │ ├── fillpreference.html │ │ ├── fillproject.html │ │ ├── home.html │ │ ├── home.html~ │ │ ├── markcheckpoint.html │ │ ├── prefinfo.html │ │ ├── showfinalgradesstudent.html │ │ ├── showpreference.html │ │ ├── showprofessordetails.html │ │ ├── showprojectinfo.html │ │ ├── showprojectinfoemployee.html │ │ ├── showseniors.html │ │ ├── showseniorshtml │ │ ├── showstudentinfo.html │ │ ├── studentdetail.html │ │ ├── studentdetail.html~ │ │ ├── studentlogin.html │ │ ├── studentlogin.html~ │ │ ├── test.html │ │ ├── test.html~ │ │ ├── updateinterestguide.html │ │ ├── updateinterests.html │ │ ├── updatepastprojects.html │ │ └── updatepub.html ├── tests.py ├── urls.py ├── urls.pyc ├── urls.py~ ├── views.py ├── views.pyc └── views.py~ └── static ├── css ├── main (copy).css ├── main (copy).css~ ├── main.css └── main.css~ └── images ├── 1.png ├── iit └── iit.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/README.md -------------------------------------------------------------------------------- /certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/certificate.pem -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/manage.py -------------------------------------------------------------------------------- /myproject/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/__init__.pyc -------------------------------------------------------------------------------- /myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/settings.py -------------------------------------------------------------------------------- /myproject/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/settings.pyc -------------------------------------------------------------------------------- /myproject/settings.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/settings.py~ -------------------------------------------------------------------------------- /myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/urls.py -------------------------------------------------------------------------------- /myproject/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/urls.pyc -------------------------------------------------------------------------------- /myproject/urls.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/urls.py~ -------------------------------------------------------------------------------- /myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/wsgi.py -------------------------------------------------------------------------------- /myproject/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/myproject/wsgi.pyc -------------------------------------------------------------------------------- /polls/UsingWithoutModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/UsingWithoutModels -------------------------------------------------------------------------------- /polls/UsingWithoutModels~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/UsingWithoutModels~ -------------------------------------------------------------------------------- /polls/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/__init__.pyc -------------------------------------------------------------------------------- /polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/admin.py -------------------------------------------------------------------------------- /polls/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/admin.pyc -------------------------------------------------------------------------------- /polls/admin.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/admin.py~ -------------------------------------------------------------------------------- /polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/apps.py -------------------------------------------------------------------------------- /polls/apps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/apps.pyc -------------------------------------------------------------------------------- /polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /polls/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /polls/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/migrations/__init__.pyc -------------------------------------------------------------------------------- /polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/models.py -------------------------------------------------------------------------------- /polls/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/models.pyc -------------------------------------------------------------------------------- /polls/models.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/models.py~ -------------------------------------------------------------------------------- /polls/sfaafs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/sfaafs.py -------------------------------------------------------------------------------- /polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /polls/templates/polls/detail.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/detail.html~ -------------------------------------------------------------------------------- /polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/index.html -------------------------------------------------------------------------------- /polls/templates/polls/index.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/index.html~ -------------------------------------------------------------------------------- /polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/results.html -------------------------------------------------------------------------------- /polls/templates/polls/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/test.html -------------------------------------------------------------------------------- /polls/templates/polls/test.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/templates/polls/test.html~ -------------------------------------------------------------------------------- /polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/tests.py -------------------------------------------------------------------------------- /polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/urls.py -------------------------------------------------------------------------------- /polls/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/urls.pyc -------------------------------------------------------------------------------- /polls/urls.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/urls.py~ -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/views.py -------------------------------------------------------------------------------- /polls/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/views.pyc -------------------------------------------------------------------------------- /polls/views.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/polls/views.py~ -------------------------------------------------------------------------------- /project_management/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/__init__.pyc -------------------------------------------------------------------------------- /project_management/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/admin.py -------------------------------------------------------------------------------- /project_management/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/admin.pyc -------------------------------------------------------------------------------- /project_management/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/apps.py -------------------------------------------------------------------------------- /project_management/apps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/apps.pyc -------------------------------------------------------------------------------- /project_management/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project_management/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/migrations/__init__.pyc -------------------------------------------------------------------------------- /project_management/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/models.py -------------------------------------------------------------------------------- /project_management/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/models.pyc -------------------------------------------------------------------------------- /project_management/templates/project_management/adddoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/adddoc.html -------------------------------------------------------------------------------- /project_management/templates/project_management/addemployee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addemployee.html -------------------------------------------------------------------------------- /project_management/templates/project_management/addemployee.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addemployee.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/addpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addpanel.html -------------------------------------------------------------------------------- /project_management/templates/project_management/addstudent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addstudent.html -------------------------------------------------------------------------------- /project_management/templates/project_management/addstudent.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addstudent.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/addstudentranged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addstudentranged.html -------------------------------------------------------------------------------- /project_management/templates/project_management/addstudentranged.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/addstudentranged.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/admin.html -------------------------------------------------------------------------------- /project_management/templates/project_management/admin.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/admin.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/adminlogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/adminlogin.html -------------------------------------------------------------------------------- /project_management/templates/project_management/adminlogin.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/adminlogin.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/assigngrades.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/assigngrades.html -------------------------------------------------------------------------------- /project_management/templates/project_management/assignpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/assignpanel.html -------------------------------------------------------------------------------- /project_management/templates/project_management/assignproject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/assignproject.html -------------------------------------------------------------------------------- /project_management/templates/project_management/attend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/attend.html -------------------------------------------------------------------------------- /project_management/templates/project_management/changecheckpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/changecheckpoint.html -------------------------------------------------------------------------------- /project_management/templates/project_management/employeedetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/employeedetail.html -------------------------------------------------------------------------------- /project_management/templates/project_management/employeedetail.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/employeedetail.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/employeelogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/employeelogin.html -------------------------------------------------------------------------------- /project_management/templates/project_management/employeelogin.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/employeelogin.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/fillpreference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/fillpreference.html -------------------------------------------------------------------------------- /project_management/templates/project_management/fillproject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/fillproject.html -------------------------------------------------------------------------------- /project_management/templates/project_management/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/home.html -------------------------------------------------------------------------------- /project_management/templates/project_management/home.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/home.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/markcheckpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/markcheckpoint.html -------------------------------------------------------------------------------- /project_management/templates/project_management/prefinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/prefinfo.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showfinalgradesstudent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showfinalgradesstudent.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showpreference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showpreference.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showprofessordetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showprofessordetails.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showprojectinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showprojectinfo.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showprojectinfoemployee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showprojectinfoemployee.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showseniors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showseniors.html -------------------------------------------------------------------------------- /project_management/templates/project_management/showseniorshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showseniorshtml -------------------------------------------------------------------------------- /project_management/templates/project_management/showstudentinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/showstudentinfo.html -------------------------------------------------------------------------------- /project_management/templates/project_management/studentdetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/studentdetail.html -------------------------------------------------------------------------------- /project_management/templates/project_management/studentdetail.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/studentdetail.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/studentlogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/studentlogin.html -------------------------------------------------------------------------------- /project_management/templates/project_management/studentlogin.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/studentlogin.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/test.html -------------------------------------------------------------------------------- /project_management/templates/project_management/test.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/test.html~ -------------------------------------------------------------------------------- /project_management/templates/project_management/updateinterestguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/updateinterestguide.html -------------------------------------------------------------------------------- /project_management/templates/project_management/updateinterests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/updateinterests.html -------------------------------------------------------------------------------- /project_management/templates/project_management/updatepastprojects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/updatepastprojects.html -------------------------------------------------------------------------------- /project_management/templates/project_management/updatepub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/templates/project_management/updatepub.html -------------------------------------------------------------------------------- /project_management/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/tests.py -------------------------------------------------------------------------------- /project_management/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/urls.py -------------------------------------------------------------------------------- /project_management/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/urls.pyc -------------------------------------------------------------------------------- /project_management/urls.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/urls.py~ -------------------------------------------------------------------------------- /project_management/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/views.py -------------------------------------------------------------------------------- /project_management/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/views.pyc -------------------------------------------------------------------------------- /project_management/views.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/project_management/views.py~ -------------------------------------------------------------------------------- /static/css/main (copy).css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/static/css/main (copy).css -------------------------------------------------------------------------------- /static/css/main (copy).css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/static/css/main (copy).css~ -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/main.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/static/css/main.css~ -------------------------------------------------------------------------------- /static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/static/images/1.png -------------------------------------------------------------------------------- /static/images/iit: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/images/iit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayank0403/Project-Management-System-IIT-BHU/HEAD/static/images/iit.png --------------------------------------------------------------------------------