This is simple implementaion od Django CRUD
Setup project environment with virtualenv and pip.
$ virtualenv project-env
$ source project-env/bin/activate
$ pip install -r requirements.txt
$ cd projectname/
$ cp settings_custom.py.edit settings_custom.py
$ python manage.py migrate
$ python manage.py runserver