Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.33 KB

README.md

File metadata and controls

36 lines (29 loc) · 1.33 KB

Student-management-system

The Student Management System is a web application built using Django for the backend and Bootstrap, HTML, and JavaScript for the frontend. The primary functionality of this system is to perform CRUD (Create, Read, Update, Delete) operations on student records. Users can add new student records, update existing ones, and delete records as needed. Used SQLite to store the data.


Home page

Features

  • Create: Add new student records to the system.
  • Read: View a list of existing student records.
  • Update: Modify the details of a student record.
  • Delete: Remove unwanted student records from the system.

Edit student

Technologies used

  • Backend: Django
  • Frontend: Bootstrap, HTML, JavaScript

Installation

  1. Clone the repository:
    git clone https://github.com/Shanmukhi-gandham02/student-management-system.git
  2. Set up a virtual environment:
    python -m venv venv
    .\venv\scripts\activate
  3. Apply database migrations:
    python manage.py migrate
  4. Run the development server:
    python manage.py runserver