├── Procfile ├── README.md ├── core ├── .env ├── .template.env ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── settings.cpython-310.pyc │ ├── urls.cpython-310.pyc │ └── wsgi.cpython-310.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── manage.py ├── media ├── default.jpg ├── images │ └── read-book3.jpg └── shaytanat.jpg ├── requirements.txt ├── runtime.txt ├── searchfunc ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admin.cpython-310.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── signals.cpython-310.pyc │ ├── urls.cpython-310.pyc │ ├── validators.cpython-310.pyc │ └── views.cpython-310.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_profile_avatar.py │ ├── 0003_alter_profile_avatar.py │ ├── 0004_alter_profile_avatar.py │ ├── 0005_alter_profile_avatar.py │ ├── 0006_alter_profile_avatar.py │ ├── 0007_alter_profile_avatar.py │ ├── 0008_alter_profile_avatar.py │ ├── 0009_alter_profile_avatar.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0002_alter_profile_avatar.cpython-310.pyc │ │ ├── 0002_usermodel.cpython-310.pyc │ │ ├── 0003_alter_profile_avatar.cpython-310.pyc │ │ ├── 0003_alter_user_is_organised.cpython-310.pyc │ │ ├── 0004_alter_profile_avatar.cpython-310.pyc │ │ ├── 0004_alter_sliderimagescontent_slider_img.cpython-310.pyc │ │ ├── 0005_alter_profile_avatar.cpython-310.pyc │ │ ├── 0006_alter_profile_avatar.cpython-310.pyc │ │ ├── 0007_alter_profile_avatar.cpython-310.pyc │ │ ├── 0008_alter_profile_avatar.cpython-310.pyc │ │ ├── 0009_alter_profile_avatar.cpython-310.pyc │ │ └── __init__.cpython-310.pyc ├── models.py ├── signals.py ├── tests.py ├── urls.py ├── validators.py └── views.py ├── static ├── css │ ├── animate.css │ ├── books.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── checkout.css │ ├── flexslider.css │ ├── icomoon.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── profile.css │ ├── slider.css │ ├── style.css │ └── style.css.map ├── fonts │ ├── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── flaticon │ │ ├── backup.txt │ │ ├── font │ │ │ ├── Flaticon.eot │ │ │ ├── Flaticon.svg │ │ │ ├── Flaticon.ttf │ │ │ ├── Flaticon.woff │ │ │ ├── _flaticon.scss │ │ │ ├── flaticon.css │ │ │ └── flaticon.html │ │ └── license │ │ │ └── license.pdf │ └── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff ├── img │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── blog-4.jpg │ ├── blog-5.jpg │ ├── blog-6.jpg │ ├── cover_bg_1.jpg │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ ├── img-7.jpg │ ├── img-8.jpg │ ├── img-9.jpg │ ├── img_bg_1.jpg │ ├── img_bg_2.jpg │ ├── img_bg_3.jpg │ ├── loc.png │ ├── pexels-henry--co-2468056.jpg │ ├── read-book1.jpg │ ├── read-book2.jpg │ ├── read-book3.jpg │ ├── services-1.jpg │ ├── services-2.jpg │ ├── services-3.jpg │ ├── services-4.jpg │ └── services-5.jpg ├── js │ ├── bootstrap.min.js │ ├── google_map.js │ ├── jquery.countTo.js │ ├── jquery.easing.1.3.js │ ├── jquery.flexslider-min.js │ ├── jquery.min.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── modernizr-2.6.2.min.js │ ├── owl.carousel.min.js │ ├── respond.min.js │ ├── slider.js │ └── sticky-kit.min.js └── sass │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ ├── _bootstrap-sprockets.scss │ ├── bootstrap.scss │ ├── bootstrap │ ├── _alerts.scss │ ├── _badges.scss │ ├── _breadcrumbs.scss │ ├── _button-groups.scss │ ├── _buttons.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _component-animations.scss │ ├── _dropdowns.scss │ ├── _forms.scss │ ├── _glyphicons.scss │ ├── _grid.scss │ ├── _input-groups.scss │ ├── _jumbotron.scss │ ├── _labels.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modals.scss │ ├── _navbar.scss │ ├── _navs.scss │ ├── _normalize.scss │ ├── _pager.scss │ ├── _pagination.scss │ ├── _panels.scss │ ├── _popovers.scss │ ├── _print.scss │ ├── _progress-bars.scss │ ├── _responsive-embed.scss │ ├── _responsive-utilities.scss │ ├── _scaffolding.scss │ ├── _tables.scss │ ├── _theme.scss │ ├── _thumbnails.scss │ ├── _tooltip.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── _wells.scss │ └── mixins │ │ ├── _alerts.scss │ │ ├── _background-variant.scss │ │ ├── _border-radius.scss │ │ ├── _buttons.scss │ │ ├── _center-block.scss │ │ ├── _clearfix.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hide-text.scss │ │ ├── _image.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _nav-divider.scss │ │ ├── _nav-vertical-align.scss │ │ ├── _opacity.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _progress-bar.scss │ │ ├── _reset-filter.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _responsive-visibility.scss │ │ ├── _size.scss │ │ ├── _tab-focus.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-overflow.scss │ │ └── _vendor-prefixes.scss │ └── style.scss ├── staticfiles ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── nav_sidebar.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── jquery.init.js │ │ ├── nav_sidebar.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate_init.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── css │ ├── animate.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── checkout.css │ ├── flexslider.css │ ├── icomoon.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── profile.css │ ├── slider.css │ ├── style.css │ └── style.css.map ├── fonts │ ├── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── flaticon │ │ ├── backup.txt │ │ ├── font │ │ │ ├── Flaticon.eot │ │ │ ├── Flaticon.svg │ │ │ ├── Flaticon.ttf │ │ │ ├── Flaticon.woff │ │ │ ├── _flaticon.scss │ │ │ ├── flaticon.css │ │ │ └── flaticon.html │ │ └── license │ │ │ └── license.pdf │ └── icomoon │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff ├── img │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── blog-4.jpg │ ├── blog-5.jpg │ ├── blog-6.jpg │ ├── cover_bg_1.jpg │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ ├── img-7.jpg │ ├── img-8.jpg │ ├── img-9.jpg │ ├── img_bg_1.jpg │ ├── img_bg_2.jpg │ ├── img_bg_3.jpg │ ├── loc.png │ ├── pexels-henry--co-2468056.jpg │ ├── read-book1.jpg │ ├── read-book2.jpg │ ├── read-book3.jpg │ ├── services-1.jpg │ ├── services-2.jpg │ ├── services-3.jpg │ ├── services-4.jpg │ └── services-5.jpg ├── js │ ├── bootstrap.min.js │ ├── google_map.js │ ├── jquery.countTo.js │ ├── jquery.easing.1.3.js │ ├── jquery.flexslider-min.js │ ├── jquery.min.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── modernizr-2.6.2.min.js │ ├── owl.carousel.min.js │ ├── respond.min.js │ ├── slider.js │ └── sticky-kit.min.js └── sass │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ ├── _bootstrap-sprockets.scss │ ├── bootstrap.scss │ ├── bootstrap │ ├── _alerts.scss │ ├── _badges.scss │ ├── _breadcrumbs.scss │ ├── _button-groups.scss │ ├── _buttons.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _component-animations.scss │ ├── _dropdowns.scss │ ├── _forms.scss │ ├── _glyphicons.scss │ ├── _grid.scss │ ├── _input-groups.scss │ ├── _jumbotron.scss │ ├── _labels.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modals.scss │ ├── _navbar.scss │ ├── _navs.scss │ ├── _normalize.scss │ ├── _pager.scss │ ├── _pagination.scss │ ├── _panels.scss │ ├── _popovers.scss │ ├── _print.scss │ ├── _progress-bars.scss │ ├── _responsive-embed.scss │ ├── _responsive-utilities.scss │ ├── _scaffolding.scss │ ├── _tables.scss │ ├── _theme.scss │ ├── _thumbnails.scss │ ├── _tooltip.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── _wells.scss │ └── mixins │ │ ├── _alerts.scss │ │ ├── _background-variant.scss │ │ ├── _border-radius.scss │ │ ├── _buttons.scss │ │ ├── _center-block.scss │ │ ├── _clearfix.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hide-text.scss │ │ ├── _image.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _nav-divider.scss │ │ ├── _nav-vertical-align.scss │ │ ├── _opacity.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _progress-bar.scss │ │ ├── _reset-filter.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _responsive-visibility.scss │ │ ├── _size.scss │ │ ├── _tab-focus.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-overflow.scss │ │ └── _vendor-prefixes.scss │ └── style.scss └── templates ├── details ├── book_details.html └── shop_details.html ├── includes ├── about.html ├── navigation.html └── sidebar.html ├── layouts └── base.html ├── pages ├── books.html ├── checkout.html ├── home.html ├── profile.html ├── update.html ├── user_create.html └── users.html └── registration ├── login.html ├── password_reset_complete.html ├── password_reset_confirm.html ├── password_reset_done.html ├── password_reset_email.html ├── password_reset_form.html └── signup.html /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn core.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/README.md -------------------------------------------------------------------------------- /core/.env: -------------------------------------------------------------------------------- 1 | DEBUG = True 2 | SECRET_KEY='!c$^-qh^@l#58_(kz4s^gu_4*8d6d9m3ksf564agta5q2cpw)o' -------------------------------------------------------------------------------- /core/.template.env: -------------------------------------------------------------------------------- 1 | DEBUG = True 2 | SECRET_KEY=1234 -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /core/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/manage.py -------------------------------------------------------------------------------- /media/default.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/images/read-book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/media/images/read-book3.jpg -------------------------------------------------------------------------------- /media/shaytanat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/media/shaytanat.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 -------------------------------------------------------------------------------- /searchfunc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /searchfunc/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/signals.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/signals.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/validators.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/validators.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/admin.py -------------------------------------------------------------------------------- /searchfunc/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/apps.py -------------------------------------------------------------------------------- /searchfunc/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/forms.py -------------------------------------------------------------------------------- /searchfunc/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0001_initial.py -------------------------------------------------------------------------------- /searchfunc/migrations/0002_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0002_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0003_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0003_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0004_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0004_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0005_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0005_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0006_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0006_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0007_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0007_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0008_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0008_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/0009_alter_profile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/0009_alter_profile_avatar.py -------------------------------------------------------------------------------- /searchfunc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0002_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0002_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0002_usermodel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0002_usermodel.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0003_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0003_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0003_alter_user_is_organised.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0003_alter_user_is_organised.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0004_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0004_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0004_alter_sliderimagescontent_slider_img.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0004_alter_sliderimagescontent_slider_img.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0005_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0005_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0006_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0006_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0007_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0007_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0008_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0008_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/0009_alter_profile_avatar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/0009_alter_profile_avatar.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /searchfunc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/models.py -------------------------------------------------------------------------------- /searchfunc/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/signals.py -------------------------------------------------------------------------------- /searchfunc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/tests.py -------------------------------------------------------------------------------- /searchfunc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/urls.py -------------------------------------------------------------------------------- /searchfunc/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/validators.py -------------------------------------------------------------------------------- /searchfunc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/searchfunc/views.py -------------------------------------------------------------------------------- /static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/animate.css -------------------------------------------------------------------------------- /static/css/books.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/books.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/checkout.css -------------------------------------------------------------------------------- /static/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/flexslider.css -------------------------------------------------------------------------------- /static/css/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/icomoon.css -------------------------------------------------------------------------------- /static/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/owl.carousel.min.css -------------------------------------------------------------------------------- /static/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /static/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/profile.css -------------------------------------------------------------------------------- /static/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/slider.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/css/style.css.map -------------------------------------------------------------------------------- /static/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/backup.txt -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/Flaticon.eot -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/Flaticon.svg -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/Flaticon.ttf -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/Flaticon.woff -------------------------------------------------------------------------------- /static/fonts/flaticon/font/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/_flaticon.scss -------------------------------------------------------------------------------- /static/fonts/flaticon/font/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/flaticon.css -------------------------------------------------------------------------------- /static/fonts/flaticon/font/flaticon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/font/flaticon.html -------------------------------------------------------------------------------- /static/fonts/flaticon/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/flaticon/license/license.pdf -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /static/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /static/img/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/blog-1.jpg -------------------------------------------------------------------------------- /static/img/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/blog-2.jpg -------------------------------------------------------------------------------- /static/img/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/blog-3.jpg -------------------------------------------------------------------------------- /static/img/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/blog-4.jpg -------------------------------------------------------------------------------- /static/img/blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/blog-5.jpg -------------------------------------------------------------------------------- /static/img/blog-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/blog-6.jpg -------------------------------------------------------------------------------- /static/img/cover_bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/cover_bg_1.jpg -------------------------------------------------------------------------------- /static/img/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-1.jpg -------------------------------------------------------------------------------- /static/img/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-2.jpg -------------------------------------------------------------------------------- /static/img/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-3.jpg -------------------------------------------------------------------------------- /static/img/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-4.jpg -------------------------------------------------------------------------------- /static/img/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-5.jpg -------------------------------------------------------------------------------- /static/img/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-6.jpg -------------------------------------------------------------------------------- /static/img/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-7.jpg -------------------------------------------------------------------------------- /static/img/img-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-8.jpg -------------------------------------------------------------------------------- /static/img/img-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img-9.jpg -------------------------------------------------------------------------------- /static/img/img_bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img_bg_1.jpg -------------------------------------------------------------------------------- /static/img/img_bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img_bg_2.jpg -------------------------------------------------------------------------------- /static/img/img_bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/img_bg_3.jpg -------------------------------------------------------------------------------- /static/img/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/loc.png -------------------------------------------------------------------------------- /static/img/pexels-henry--co-2468056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/pexels-henry--co-2468056.jpg -------------------------------------------------------------------------------- /static/img/read-book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/read-book1.jpg -------------------------------------------------------------------------------- /static/img/read-book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/read-book2.jpg -------------------------------------------------------------------------------- /static/img/read-book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/read-book3.jpg -------------------------------------------------------------------------------- /static/img/services-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/services-1.jpg -------------------------------------------------------------------------------- /static/img/services-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/services-2.jpg -------------------------------------------------------------------------------- /static/img/services-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/services-3.jpg -------------------------------------------------------------------------------- /static/img/services-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/services-4.jpg -------------------------------------------------------------------------------- /static/img/services-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/img/services-5.jpg -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/google_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/google_map.js -------------------------------------------------------------------------------- /static/js/jquery.countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/jquery.countTo.js -------------------------------------------------------------------------------- /static/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /static/js/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/jquery.flexslider-min.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /static/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/owl.carousel.min.js -------------------------------------------------------------------------------- /static/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/respond.min.js -------------------------------------------------------------------------------- /static/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/slider.js -------------------------------------------------------------------------------- /static/js/sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/js/sticky-kit.min.js -------------------------------------------------------------------------------- /static/sass/_bootstrap-compass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/_bootstrap-compass.scss -------------------------------------------------------------------------------- /static/sass/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/_bootstrap-mincer.scss -------------------------------------------------------------------------------- /static/sass/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/_bootstrap-sprockets.scss -------------------------------------------------------------------------------- /static/sass/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_badges.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_breadcrumbs.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_button-groups.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_close.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_code.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_component-animations.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_forms.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_glyphicons.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_grid.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_input-groups.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_labels.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_media.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_modals.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_navs.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_pager.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_panels.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_print.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_progress-bars.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_responsive-embed.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_responsive-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_responsive-utilities.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_scaffolding.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_tables.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_theme.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_thumbnails.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_type.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_variables.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/_wells.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_alerts.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_center-block.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_hide-text.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_labels.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_nav-vertical-align.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_opacity.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_panels.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_progress-bar.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_responsive-visibility.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_text-overflow.scss -------------------------------------------------------------------------------- /static/sass/bootstrap/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/bootstrap/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /static/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/static/sass/style.scss -------------------------------------------------------------------------------- /staticfiles/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/autocomplete.css -------------------------------------------------------------------------------- /staticfiles/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/base.css -------------------------------------------------------------------------------- /staticfiles/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/changelists.css -------------------------------------------------------------------------------- /staticfiles/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/dashboard.css -------------------------------------------------------------------------------- /staticfiles/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/fonts.css -------------------------------------------------------------------------------- /staticfiles/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/forms.css -------------------------------------------------------------------------------- /staticfiles/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/login.css -------------------------------------------------------------------------------- /staticfiles/admin/css/nav_sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/nav_sidebar.css -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/responsive.css -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /staticfiles/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/rtl.css -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /staticfiles/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/css/widgets.css -------------------------------------------------------------------------------- /staticfiles/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /staticfiles/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/fonts/README.txt -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/LICENSE -------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/README.txt -------------------------------------------------------------------------------- /staticfiles/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-no.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/search.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/SelectBox.js -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /staticfiles/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/actions.js -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /staticfiles/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/autocomplete.js -------------------------------------------------------------------------------- /staticfiles/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/calendar.js -------------------------------------------------------------------------------- /staticfiles/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/cancel.js -------------------------------------------------------------------------------- /staticfiles/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/change_form.js -------------------------------------------------------------------------------- /staticfiles/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/collapse.js -------------------------------------------------------------------------------- /staticfiles/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/core.js -------------------------------------------------------------------------------- /staticfiles/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/inlines.js -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/jquery.init.js -------------------------------------------------------------------------------- /staticfiles/admin/js/nav_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/nav_sidebar.js -------------------------------------------------------------------------------- /staticfiles/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/popup_response.js -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/prepopulate.js -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /staticfiles/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/urlify.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/af.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/bn.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/bs.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/dsb.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/hsb.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/hy.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ka.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ne.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ps.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/sl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/sq.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/tk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /staticfiles/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/animate.css -------------------------------------------------------------------------------- /staticfiles/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/bootstrap.css -------------------------------------------------------------------------------- /staticfiles/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/bootstrap.css.map -------------------------------------------------------------------------------- /staticfiles/css/checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/checkout.css -------------------------------------------------------------------------------- /staticfiles/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/flexslider.css -------------------------------------------------------------------------------- /staticfiles/css/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/icomoon.css -------------------------------------------------------------------------------- /staticfiles/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/owl.carousel.min.css -------------------------------------------------------------------------------- /staticfiles/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /staticfiles/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/profile.css -------------------------------------------------------------------------------- /staticfiles/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/slider.css -------------------------------------------------------------------------------- /staticfiles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/style.css -------------------------------------------------------------------------------- /staticfiles/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/css/style.css.map -------------------------------------------------------------------------------- /staticfiles/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /staticfiles/fonts/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /staticfiles/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /staticfiles/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /staticfiles/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/backup.txt -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/Flaticon.eot -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/Flaticon.svg -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/Flaticon.ttf -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/Flaticon.woff -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/_flaticon.scss -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/flaticon.css -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/font/flaticon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/font/flaticon.html -------------------------------------------------------------------------------- /staticfiles/fonts/flaticon/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/flaticon/license/license.pdf -------------------------------------------------------------------------------- /staticfiles/fonts/icomoon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/icomoon/icomoon.eot -------------------------------------------------------------------------------- /staticfiles/fonts/icomoon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/icomoon/icomoon.svg -------------------------------------------------------------------------------- /staticfiles/fonts/icomoon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/icomoon/icomoon.ttf -------------------------------------------------------------------------------- /staticfiles/fonts/icomoon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/fonts/icomoon/icomoon.woff -------------------------------------------------------------------------------- /staticfiles/img/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/blog-1.jpg -------------------------------------------------------------------------------- /staticfiles/img/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/blog-2.jpg -------------------------------------------------------------------------------- /staticfiles/img/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/blog-3.jpg -------------------------------------------------------------------------------- /staticfiles/img/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/blog-4.jpg -------------------------------------------------------------------------------- /staticfiles/img/blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/blog-5.jpg -------------------------------------------------------------------------------- /staticfiles/img/blog-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/blog-6.jpg -------------------------------------------------------------------------------- /staticfiles/img/cover_bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/cover_bg_1.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-1.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-2.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-3.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-4.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-5.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-6.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-7.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-8.jpg -------------------------------------------------------------------------------- /staticfiles/img/img-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img-9.jpg -------------------------------------------------------------------------------- /staticfiles/img/img_bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img_bg_1.jpg -------------------------------------------------------------------------------- /staticfiles/img/img_bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img_bg_2.jpg -------------------------------------------------------------------------------- /staticfiles/img/img_bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/img_bg_3.jpg -------------------------------------------------------------------------------- /staticfiles/img/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/loc.png -------------------------------------------------------------------------------- /staticfiles/img/pexels-henry--co-2468056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/pexels-henry--co-2468056.jpg -------------------------------------------------------------------------------- /staticfiles/img/read-book1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/read-book1.jpg -------------------------------------------------------------------------------- /staticfiles/img/read-book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/read-book2.jpg -------------------------------------------------------------------------------- /staticfiles/img/read-book3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/read-book3.jpg -------------------------------------------------------------------------------- /staticfiles/img/services-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/services-1.jpg -------------------------------------------------------------------------------- /staticfiles/img/services-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/services-2.jpg -------------------------------------------------------------------------------- /staticfiles/img/services-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/services-3.jpg -------------------------------------------------------------------------------- /staticfiles/img/services-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/services-4.jpg -------------------------------------------------------------------------------- /staticfiles/img/services-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/img/services-5.jpg -------------------------------------------------------------------------------- /staticfiles/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/bootstrap.min.js -------------------------------------------------------------------------------- /staticfiles/js/google_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/google_map.js -------------------------------------------------------------------------------- /staticfiles/js/jquery.countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/jquery.countTo.js -------------------------------------------------------------------------------- /staticfiles/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /staticfiles/js/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/jquery.flexslider-min.js -------------------------------------------------------------------------------- /staticfiles/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/jquery.min.js -------------------------------------------------------------------------------- /staticfiles/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /staticfiles/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/main.js -------------------------------------------------------------------------------- /staticfiles/js/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /staticfiles/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/owl.carousel.min.js -------------------------------------------------------------------------------- /staticfiles/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/respond.min.js -------------------------------------------------------------------------------- /staticfiles/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/slider.js -------------------------------------------------------------------------------- /staticfiles/js/sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/js/sticky-kit.min.js -------------------------------------------------------------------------------- /staticfiles/sass/_bootstrap-compass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/_bootstrap-compass.scss -------------------------------------------------------------------------------- /staticfiles/sass/_bootstrap-mincer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/_bootstrap-mincer.scss -------------------------------------------------------------------------------- /staticfiles/sass/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/_bootstrap-sprockets.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_badges.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_breadcrumbs.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_button-groups.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_close.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_code.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_component-animations.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_forms.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_glyphicons.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_grid.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_input-groups.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_labels.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_media.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_modals.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_navs.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_pager.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_panels.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_print.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_progress-bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_progress-bars.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_responsive-embed.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_responsive-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_responsive-utilities.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_scaffolding.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_tables.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_theme.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_thumbnails.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_type.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_variables.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/_wells.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_alerts.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_center-block.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_hide-text.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_labels.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_nav-vertical-align.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_opacity.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_panels.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_progress-bar.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_responsive-visibility.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_text-overflow.scss -------------------------------------------------------------------------------- /staticfiles/sass/bootstrap/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/bootstrap/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /staticfiles/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/staticfiles/sass/style.scss -------------------------------------------------------------------------------- /templates/details/book_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/details/book_details.html -------------------------------------------------------------------------------- /templates/details/shop_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/details/shop_details.html -------------------------------------------------------------------------------- /templates/includes/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/includes/about.html -------------------------------------------------------------------------------- /templates/includes/navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/includes/sidebar.html -------------------------------------------------------------------------------- /templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/layouts/base.html -------------------------------------------------------------------------------- /templates/pages/books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/books.html -------------------------------------------------------------------------------- /templates/pages/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/checkout.html -------------------------------------------------------------------------------- /templates/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/home.html -------------------------------------------------------------------------------- /templates/pages/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/profile.html -------------------------------------------------------------------------------- /templates/pages/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/update.html -------------------------------------------------------------------------------- /templates/pages/user_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/user_create.html -------------------------------------------------------------------------------- /templates/pages/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/pages/users.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /templates/registration/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwandev12/book-search-django-website/HEAD/templates/registration/signup.html --------------------------------------------------------------------------------