django-student-management-system icon indicating copy to clipboard operation
django-student-management-system copied to clipboard

Not able to add students

Open narendrago opened this issue 3 years ago • 7 comments

Shows 'failed to add students' whenever I try to add student

narendrago avatar Mar 23 '21 12:03 narendrago

yes Here in this code have bug in add student section

bpmaurya avatar Mar 30 '21 10:03 bpmaurya

Yes sir here is some problem for add a new students...plz can you solve this problem .... I am use this project for educational and now submission date coming so plz can u solve this....

AkshayGaikwad02 avatar Sep 30 '21 14:09 AkshayGaikwad02

Shows 'failed to add students' whenever I try to add student

Did you solved this problem???

AkshayGaikwad02 avatar Sep 30 '21 14:09 AkshayGaikwad02

it is worked with me when I changed course_id to exist one, in models.py file in line 186: I changed from 1 to 2 like that:

Students.objects.create(admin=instance, course_id=Courses.objects.get(id=2), session_year_id=SessionYearModel.objects.get(id=1), address="", profile_pic="", gender="")

MhdAliHarmalani avatar Aug 23 '22 15:08 MhdAliHarmalani

it is worked with me when I changed course_id to exist one, in models.py file in line 186: I changed from 1 to 2 like that:

Students.objects.create(admin=instance, course_id=Courses.objects.get(id=2), session_year_id=SessionYearModel.objects.get(id=1), address="", profile_pic="", gender="")

how to delete all the students i cant delete first two students

afnanplk avatar May 29 '23 10:05 afnanplk

how to delete all the students i cant delete first two students

Go to model.py file in AttendanceReport class; Change student_id = models.ForeignKey(Students, on_delete=models.DO_NOTHING) to student_id = models.ForeignKey(Students, on_delete=models.CASCADE)

Then again make migrations by py manage.py makemigrations and then py manage.py migrate

It will definitely work.

ahmar-js avatar Jul 19 '23 11:07 ahmar-js

reCAPTCHA is not terminating. can you tell me how to solve or remove the recaptcha

efre1m avatar Nov 14 '23 19:11 efre1m