Skip to content

MSKose/django-crud-form

Repository files navigation

Django CRUD Form

Table of Contents

Overview

With this project I aimed to apply CRUD functionality with Django ORM and Django Template Language. I have learned a lot about utilizing Bootstrap5 into the Django templates with the use of django-widget-tweaks. Also, I've gotten comfortable using the CRUD operations with Django

screenshot

Stack & Tools

  • Django
  • Bootstrap
  • HTML
  • CSS
  • django-widget-tweaks

How To Use

# Clone this repository
$ git clone https://github.com/MSKose/django-crud-form

# Install dependencies
    $ python -m venv env
    > env/Scripts/activate (for win OS)
    $ source env/bin/activate (for macOs/linux OS)
    $ pip install -r requirements.txt

# Add .env file
    add your SECRET_KEY in a .env file

# Run the app
    $ python manage.py runserver