diff --git a/CDC_Backend/APIs/admin.py b/CDC_Backend/APIs/admin.py index bc5b427..4c26bd9 100644 --- a/CDC_Backend/APIs/admin.py +++ b/CDC_Backend/APIs/admin.py @@ -3,10 +3,7 @@ from .models import * admin.site.register(User) admin.site.register(Student) -admin.site.register(PR) -admin.site.register(Company) +admin.site.register(Admin) admin.site.register(Placement) -admin.site.register(Internship) admin.site.register(PlacementApplication) -admin.site.register(InternshipApplication) admin.site.register(PrePlacementOffer) diff --git a/CDC_Backend/templates/student_application_status_not_selected.html b/CDC_Backend/templates/student_application_status_not_selected.html new file mode 100644 index 0000000..3ac48d7 --- /dev/null +++ b/CDC_Backend/templates/student_application_status_not_selected.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ +
+ + + + + + + +
+

Hey, {{ student_name }}

+

+ We regret to inform you that you have not been selected for {designation} role at {company_name}. + CDC will keep bringing more such opportunities for you in the future. +

+ + + + +
+
+
+
+ + + + +
+

+ ® CDC,IIT Dharwad,2021
+

+
+
+
+ + diff --git a/CDC_Backend/templates/student_application_status_selected.html b/CDC_Backend/templates/student_application_status_selected.html new file mode 100644 index 0000000..07d84c2 --- /dev/null +++ b/CDC_Backend/templates/student_application_status_selected.html @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ +
+ + + + + + + +
+

Hey, {{ student_name }}

+

+ Congratulations, You have been selected for the {designation} at {company_name}.
+

+ + + + +
+
+
+
+ + + + +
+

+ ® CDC,IIT Dharwad,2021
+

+
+
+
+ + diff --git a/requirements.txt b/requirements.txt index 505b327..01f0ea8 100644 Binary files a/requirements.txt and b/requirements.txt differ