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 = [
|
|
|
|
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="Upload Resume"),
|
|
|
|
path("submitApplication/", studentViews.submitApplication, name="Submit Application"),
|
|
|
|
]
|