├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── djlibrary ├── djlibrary │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_author.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── templates │ ├── base.html │ ├── home.html │ └── store │ ├── create_normal.html │ ├── create_with_author.html │ └── list.html └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/README.md -------------------------------------------------------------------------------- /djlibrary/djlibrary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djlibrary/djlibrary/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/djlibrary/settings.py -------------------------------------------------------------------------------- /djlibrary/djlibrary/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/djlibrary/urls.py -------------------------------------------------------------------------------- /djlibrary/djlibrary/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/djlibrary/wsgi.py -------------------------------------------------------------------------------- /djlibrary/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/manage.py -------------------------------------------------------------------------------- /djlibrary/store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djlibrary/store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/admin.py -------------------------------------------------------------------------------- /djlibrary/store/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/apps.py -------------------------------------------------------------------------------- /djlibrary/store/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/forms.py -------------------------------------------------------------------------------- /djlibrary/store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /djlibrary/store/migrations/0002_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/migrations/0002_author.py -------------------------------------------------------------------------------- /djlibrary/store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djlibrary/store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/models.py -------------------------------------------------------------------------------- /djlibrary/store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/tests.py -------------------------------------------------------------------------------- /djlibrary/store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/urls.py -------------------------------------------------------------------------------- /djlibrary/store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/store/views.py -------------------------------------------------------------------------------- /djlibrary/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/templates/base.html -------------------------------------------------------------------------------- /djlibrary/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/templates/home.html -------------------------------------------------------------------------------- /djlibrary/templates/store/create_normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/templates/store/create_normal.html -------------------------------------------------------------------------------- /djlibrary/templates/store/create_with_author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/templates/store/create_with_author.html -------------------------------------------------------------------------------- /djlibrary/templates/store/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taranjeet/django-library-app/HEAD/djlibrary/templates/store/list.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=2.0.11 2 | --------------------------------------------------------------------------------