Student Management System
This project is a simple Student Management System implemented using Django, HTML, CSS, and Bootstrap. It provides functionalities for creating, deleting, updating, and reading student records.
- Create: Add new student records with details such as name, age, grade, etc.
- Read: View the list of existing student records with their details.
- Update: Modify the details of existing student records.
- Delete: Remove unwanted student records from the system.
- Django: Python-based web framework for backend development.
- HTML: Markup language for creating the structure of web pages.
- CSS: Styling language for enhancing the visual presentation of web pages.
- Bootstrap: Frontend framework for designing responsive and mobile-first websites.
To run this project locally, follow these steps:
- Clone this repository to your local machine.
- Install Python and Django if you haven't already.
- Navigate to the project directory in your terminal.
- Run
python manage.py runserver
. - Open your web browser and go to
http://localhost:8000
to view the application.
- Create: Click on the "Add Student" button and fill in the required details.
- Read: The list of existing student records is displayed on the homepage.
- Update: Click on the "Edit" button next to the student record you wish to update.
- Delete: Click on the "Delete" button next to the student record you wish to remove.