2021-10-15 20:47:23 +05:30
|
|
|
from django.urls import path
|
|
|
|
|
2022-05-02 17:16:56 +05:30
|
|
|
from . import companyViews
|
2021-10-15 20:47:23 +05:30
|
|
|
|
|
|
|
urlpatterns = [
|
2021-12-03 01:04:49 +05:30
|
|
|
path('addPlacement/', companyViews.addPlacement, name="Add Placement"),
|
2021-12-17 17:15:56 +05:30
|
|
|
path('verifyEmail/', companyViews.verifyEmail, name="Verify Email"),
|
2023-06-02 22:44:07 +05:30
|
|
|
path('getAutoFillJnf/', companyViews.autoFillJnf, name="Auto FIll JNF"),
|
2023-07-25 00:34:39 +05:30
|
|
|
path('addInternship/',companyViews.addInternship,name="Add Internship"),
|
2023-10-08 01:56:12 +05:30
|
|
|
path('getAutoFillInf/', companyViews.autoFillInf, name="Auto FIll INF"),
|
2021-10-15 20:47:23 +05:30
|
|
|
]
|