Simple Django TODO App
Create new virtualenv for Python 3
Use the package manager pip to install Django.
pip install Django
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Used basic Class Based Views for CRUD operations
Items which are deleted will be marked as is_deleted
True
in DB.
The project uses SQLite as Database, so no external connection was needed while installation
The Django Admin can view all the created entries via default Django Admin Interface at Django Admin
Where the Admin export the selected entries as CSV in the dropdown