├── .gitignore ├── manage.py ├── notes ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py └── views.py ├── notesapp ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/.gitignore -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/manage.py -------------------------------------------------------------------------------- /notes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/admin.py -------------------------------------------------------------------------------- /notes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/apps.py -------------------------------------------------------------------------------- /notes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/migrations/0001_initial.py -------------------------------------------------------------------------------- /notes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/models.py -------------------------------------------------------------------------------- /notes/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/serializers.py -------------------------------------------------------------------------------- /notes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/tests.py -------------------------------------------------------------------------------- /notes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notes/views.py -------------------------------------------------------------------------------- /notesapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notesapp/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notesapp/asgi.py -------------------------------------------------------------------------------- /notesapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notesapp/settings.py -------------------------------------------------------------------------------- /notesapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notesapp/urls.py -------------------------------------------------------------------------------- /notesapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/notesapp/wsgi.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sankalpjonn/django-crud-example/HEAD/requirements.txt --------------------------------------------------------------------------------