2022-05-02 17:16:56 +05:30
|
|
|
from django.urls import path
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2022-05-02 17:16:56 +05:30
|
|
|
from . import studentViews
|
2021-10-15 20:47:23 +05:30
|
|
|
|
|
|
|
urlpatterns = [
|
2023-10-03 16:33:11 +05:30
|
|
|
path('login/', studentViews.login, name="Login"),
|
|
|
|
path('profile/', studentViews.studentProfile, name="Student Profile"),
|
|
|
|
path('getDashboard/', studentViews.getDashboard, name="Dashboard"),
|
|
|
|
path("addResume/", studentViews.addResume, name="Upload Resume"),
|
|
|
|
path("deleteResume/", studentViews.deleteResume, name="Delete Resume"),
|
2023-10-05 01:48:37 +05:30
|
|
|
path("submitApplication/", studentViews.submitApplication, name="Add Application"),
|
2023-10-03 16:33:11 +05:30
|
|
|
path("deleteApplication/", studentViews.deleteApplication, name="Delete Application"),
|
2022-11-03 16:46:56 +05:30
|
|
|
path("getContributorStats/", studentViews.getContributorStats, name="Get Contributor Stats"),
|
2023-10-03 16:33:11 +05:30
|
|
|
path("studentAcceptOffer/", studentViews.studentAcceptOffer, name="Student Accept Offer"),
|
|
|
|
path("addIssue/",studentViews.addIssue,name= "Add Issue")
|
2021-10-15 20:47:23 +05:30
|
|
|
]
|