This is a CRUD (Create, Read, Update, Delete) project built using Django, allowing users to perform basic operations on student records. The project includes functionalities to add, view, edit, and delete student records.
- Add new student records.
- View existing student records.
- Edit and update student information.
- Delete student records.
- Python 3.x
- Django
-
Clone the repository:
git clone https:// link in code tab
-
Navigate to the project directory:
cd django-crud-project
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the Django server:
python manage.py runserver
-
Access the application in your web browser at
http://localhost:8000
. -
Use the following URLs to perform CRUD operations:
- Add Student:
http://localhost:8000/add_student/
- View Students:
http://localhost:8000/view_students/
- Edit Student:
http://localhost:8000/edit_student/<student_id>/
- Delete Student:
http://localhost:8000/delete_student/<student_id>/
- Add Student:
This project was created by Ritesh Pushkar