├── LICENSE ├── README.md ├── market ├── __init__.py ├── cache │ └── .gitignore ├── manage.py ├── market │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── board │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── context_processors.py │ │ │ ├── forms.py │ │ │ ├── middleware.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── mixins.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── messaging │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── social │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── customize.py │ ├── settings.ini │ ├── settings.py │ ├── static │ │ ├── img │ │ │ ├── logo.svg │ │ │ └── placeholder.svg │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-3.2.1.slim.min.js │ │ │ └── popper.min.js │ │ └── scss │ │ │ ├── bootstrap4_2 │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _navbar-align.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ └── style.scss │ ├── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── account │ │ │ ├── login.html │ │ │ └── signup.html │ │ ├── base.html │ │ ├── board │ │ │ ├── post_card_widget.html │ │ │ ├── post_confirm_delete.html │ │ │ ├── post_detail.html │ │ │ ├── post_form.html │ │ │ ├── post_list.html │ │ │ ├── post_update_form.html │ │ │ └── posts_widget.html │ │ ├── messaging │ │ │ ├── message_detail.html │ │ │ ├── message_form.html │ │ │ └── message_list.html │ │ ├── settings │ │ │ └── settings_base.html │ │ └── social │ │ │ ├── browse.html │ │ │ ├── profile_detail.html │ │ │ ├── profile_update_form.html │ │ │ ├── review_detail.html │ │ │ ├── review_form.html │ │ │ └── review_list_widget.html │ ├── urls.py │ └── wsgi.py ├── media │ └── .gitignore └── requirements │ ├── base.txt │ ├── development.txt │ ├── production.txt │ └── testing.txt └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/README.md -------------------------------------------------------------------------------- /market/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/cache/.gitignore -------------------------------------------------------------------------------- /market/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/manage.py -------------------------------------------------------------------------------- /market/market/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/board/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/board/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/admin.py -------------------------------------------------------------------------------- /market/market/apps/board/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/apps.py -------------------------------------------------------------------------------- /market/market/apps/board/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/forms.py -------------------------------------------------------------------------------- /market/market/apps/board/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/board/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/models.py -------------------------------------------------------------------------------- /market/market/apps/board/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/tests.py -------------------------------------------------------------------------------- /market/market/apps/board/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/urls.py -------------------------------------------------------------------------------- /market/market/apps/board/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/board/views.py -------------------------------------------------------------------------------- /market/market/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/admin.py -------------------------------------------------------------------------------- /market/market/apps/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/apps.py -------------------------------------------------------------------------------- /market/market/apps/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/context_processors.py -------------------------------------------------------------------------------- /market/market/apps/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/forms.py -------------------------------------------------------------------------------- /market/market/apps/core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/middleware.py -------------------------------------------------------------------------------- /market/market/apps/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/core/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/mixins.py -------------------------------------------------------------------------------- /market/market/apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/models.py -------------------------------------------------------------------------------- /market/market/apps/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/core/tests.py -------------------------------------------------------------------------------- /market/market/apps/messaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/messaging/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/admin.py -------------------------------------------------------------------------------- /market/market/apps/messaging/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/apps.py -------------------------------------------------------------------------------- /market/market/apps/messaging/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/forms.py -------------------------------------------------------------------------------- /market/market/apps/messaging/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/messaging/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/models.py -------------------------------------------------------------------------------- /market/market/apps/messaging/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/tests.py -------------------------------------------------------------------------------- /market/market/apps/messaging/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/urls.py -------------------------------------------------------------------------------- /market/market/apps/messaging/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/messaging/views.py -------------------------------------------------------------------------------- /market/market/apps/social/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/social/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/admin.py -------------------------------------------------------------------------------- /market/market/apps/social/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/apps.py -------------------------------------------------------------------------------- /market/market/apps/social/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/forms.py -------------------------------------------------------------------------------- /market/market/apps/social/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /market/market/apps/social/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/models.py -------------------------------------------------------------------------------- /market/market/apps/social/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/tests.py -------------------------------------------------------------------------------- /market/market/apps/social/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/urls.py -------------------------------------------------------------------------------- /market/market/apps/social/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/apps/social/views.py -------------------------------------------------------------------------------- /market/market/customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/customize.py -------------------------------------------------------------------------------- /market/market/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/settings.ini -------------------------------------------------------------------------------- /market/market/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/settings.py -------------------------------------------------------------------------------- /market/market/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/img/logo.svg -------------------------------------------------------------------------------- /market/market/static/img/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/img/placeholder.svg -------------------------------------------------------------------------------- /market/market/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /market/market/static/js/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/js/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /market/market/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/js/popper.min.js -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_alert.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_badge.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_breadcrumb.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_button-group.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_buttons.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_card.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_carousel.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_close.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_code.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_custom-forms.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_dropdown.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_forms.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_functions.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_grid.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_images.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_input-group.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_jumbotron.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_list-group.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_media.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_mixins.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_modal.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_nav.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_navbar.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_pagination.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_popover.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_print.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_progress.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_reboot.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_root.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_tables.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_tooltip.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_transitions.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_type.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_utilities.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/_variables.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/bootstrap-grid.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/bootstrap-reboot.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/bootstrap.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_alert.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_background-variant.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_badge.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_border-radius.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_buttons.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_caret.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_clearfix.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_float.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_forms.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_gradients.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_grid.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_hover.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_image.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_list-group.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_lists.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_navbar-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_navbar-align.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_pagination.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_reset-text.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_resize.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_size.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_table-row.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_text-hide.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_transition.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/mixins/_visibility.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_align.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_background.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_borders.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_clearfix.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_display.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_embed.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_flex.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_float.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_position.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_sizing.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_spacing.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_text.scss -------------------------------------------------------------------------------- /market/market/static/scss/bootstrap4_2/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/bootstrap4_2/utilities/_visibility.scss -------------------------------------------------------------------------------- /market/market/static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/static/scss/style.scss -------------------------------------------------------------------------------- /market/market/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/404.html -------------------------------------------------------------------------------- /market/market/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/500.html -------------------------------------------------------------------------------- /market/market/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/account/login.html -------------------------------------------------------------------------------- /market/market/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/account/signup.html -------------------------------------------------------------------------------- /market/market/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/base.html -------------------------------------------------------------------------------- /market/market/templates/board/post_card_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/post_card_widget.html -------------------------------------------------------------------------------- /market/market/templates/board/post_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/post_confirm_delete.html -------------------------------------------------------------------------------- /market/market/templates/board/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/post_detail.html -------------------------------------------------------------------------------- /market/market/templates/board/post_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/post_form.html -------------------------------------------------------------------------------- /market/market/templates/board/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/post_list.html -------------------------------------------------------------------------------- /market/market/templates/board/post_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/post_update_form.html -------------------------------------------------------------------------------- /market/market/templates/board/posts_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/board/posts_widget.html -------------------------------------------------------------------------------- /market/market/templates/messaging/message_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/messaging/message_detail.html -------------------------------------------------------------------------------- /market/market/templates/messaging/message_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/messaging/message_form.html -------------------------------------------------------------------------------- /market/market/templates/messaging/message_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/messaging/message_list.html -------------------------------------------------------------------------------- /market/market/templates/settings/settings_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/settings/settings_base.html -------------------------------------------------------------------------------- /market/market/templates/social/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/social/browse.html -------------------------------------------------------------------------------- /market/market/templates/social/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/social/profile_detail.html -------------------------------------------------------------------------------- /market/market/templates/social/profile_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/social/profile_update_form.html -------------------------------------------------------------------------------- /market/market/templates/social/review_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/social/review_detail.html -------------------------------------------------------------------------------- /market/market/templates/social/review_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/social/review_form.html -------------------------------------------------------------------------------- /market/market/templates/social/review_list_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/templates/social/review_list_widget.html -------------------------------------------------------------------------------- /market/market/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/urls.py -------------------------------------------------------------------------------- /market/market/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/market/wsgi.py -------------------------------------------------------------------------------- /market/media/.gitignore: -------------------------------------------------------------------------------- 1 | # This directory holds user-uploaded content 2 | * 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /market/requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/requirements/base.txt -------------------------------------------------------------------------------- /market/requirements/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/market/requirements/development.txt -------------------------------------------------------------------------------- /market/requirements/production.txt: -------------------------------------------------------------------------------- 1 | # Dependencies for production deployment 2 | -r base.txt -------------------------------------------------------------------------------- /market/requirements/testing.txt: -------------------------------------------------------------------------------- 1 | # Dependencies for local testing 2 | -r base.txt 3 | 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klingj3/example-project-dj-market/HEAD/requirements.txt --------------------------------------------------------------------------------