This is a Django project that demonstrates the basic CRUD (Create, Read, Update, Delete) operations using Function-Based Views and Django's built-in ModelForm. In this project, you can add, view, update and delete student records from the database. The project uses the Bootstrap framework for styling and includes basic form validation.
Python 3.x Django 3.x Bootstrap 4.x
The CRUD (Create, Retrieve, Update, Delete) project developed using Django is a web-based application that provides basic functionality to manage users' data. It allows users to create, view, edit, and delete user data in a simple and intuitive manner. The project is beneficial for users who need to manage data regularly, such as administrators, developers, or anyone who needs to manage a large amount of data.
With the CRUD project, users can create new user data by filling out a form, view existing data in a table format, edit existing data, and delete data as needed. The application is designed to be simple and user-friendly, making it easy for users to manage their data with ease.
Overall, the CRUD project is an essential tool for managing data in a web-based application. It provides a simple and intuitive interface for managing data, and it can be customized to meet the needs of any organization or user.
Clone the repository: git clone https://github.com/your-username/django-crud-project.git Navigate to the project directory: cd django-crud-project Create a virtual environment: python -m venv env Activate the virtual environment: For Windows: env\Scripts\activate For Mac/Linux: source env/bin/activate Install the requirements: pip install -r requirements.txt Run the development server: python manage.py runserver Visit http://localhost:8000 in your web browser to view the project.
Python Django - Web framework used Bootstrap - Front-end component HTML 5 javascript jQuery