├── .gitignore ├── README.md ├── ecommerce.code-workspace ├── ecommerce.sublime-project ├── ecommerce.sublime-workspace ├── fasttracktojquery └── index.html ├── notes └── checkout_process.md ├── parse_git_log.py ├── pyvenv.cfg ├── src ├── .gitignore ├── Procfile ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_full_name.py │ │ ├── 0003_user_is_active.py │ │ ├── 0004_remove_user_active.py │ │ ├── 0005_emailactivation.py │ │ └── __init__.py │ ├── models.py │ ├── passwords │ │ ├── __init__.py │ │ └── urls.py │ ├── signals.py │ ├── templates │ │ └── accounts │ │ │ ├── detail-update-view.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── snippets │ │ │ └── form.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── addresses │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20171107_0055.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── addresses │ │ │ ├── form.html │ │ │ ├── list.html │ │ │ ├── prev_addresses.html │ │ │ └── update.html │ ├── tests.py │ └── views.py ├── analytics │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_usersession.py │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── signals.py │ ├── templates │ │ └── analytics │ │ │ └── sales.html │ ├── tests.py │ ├── utils.py │ └── views.py ├── billing │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170928_2052.py │ │ ├── 0003_billingprofile_customer_id.py │ │ ├── 0004_card.py │ │ ├── 0005_card_default.py │ │ ├── 0006_charge.py │ │ ├── 0007_auto_20171012_1935.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── billing │ │ │ └── payment-method.html │ ├── tests.py │ └── views.py ├── carts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_cart_subtotal.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── carts │ │ │ ├── checkout-done.html │ │ │ ├── checkout.html │ │ │ ├── home.html │ │ │ └── snippets │ │ │ └── remove-product.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── db2.sqlite3 ├── ecommerce │ ├── __init__.py │ ├── aws │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── download │ │ │ ├── __init__.py │ │ │ └── utils.py │ │ └── utils.py │ ├── forms.py │ ├── mixins.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── local.py │ │ └── production.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── wsgi.py ├── manage.py ├── marketing │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_marketingpreference_mailchimp_subscribed.py │ │ ├── 0003_auto_20171018_0142.py │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── tests.py │ ├── utils.py │ └── views.py ├── orders │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170928_2224.py │ │ ├── 0003_auto_20170929_0013.py │ │ ├── 0004_auto_20171025_2216.py │ │ ├── 0005_auto_20171107_0035.py │ │ ├── 0006_productpurchase_productpurchasemanager.py │ │ ├── 0007_auto_20171108_0028.py │ │ ├── 0008_delete_productpurchasemanager.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── orders │ │ │ ├── library.html │ │ │ ├── order_detail.html │ │ │ └── order_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── products │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── products.json │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_product_price.py │ │ ├── 0003_product_image.py │ │ ├── 0004_auto_20170901_2159.py │ │ ├── 0005_product_featured.py │ │ ├── 0006_auto_20170901_2254.py │ │ ├── 0007_auto_20170901_2254.py │ │ ├── 0008_auto_20170901_2300.py │ │ ├── 0009_product_timestamp.py │ │ ├── 0010_product_is_digital.py │ │ ├── 0011_productfile.py │ │ ├── 0012_auto_20171108_2325.py │ │ ├── 0013_auto_20171109_0023.py │ │ ├── 0014_auto_20171116_0011.py │ │ ├── 0015_productfile_name.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── products │ │ │ ├── detail.html │ │ │ ├── featured-detail.html │ │ │ ├── list.html │ │ │ ├── snippets │ │ │ ├── card.html │ │ │ └── update-cart.html │ │ │ └── user-history.html │ ├── tests.py │ ├── understanding_crud.md │ ├── urls.py │ └── views.py ├── requirements.txt ├── runtime.txt ├── search │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── search │ │ │ ├── snippets │ │ │ └── search-form.html │ │ │ └── view.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── static_my_proj │ ├── css │ │ ├── main.css │ │ └── stripe-custom-style.css │ ├── img │ │ └── beach.jpg │ └── js │ │ ├── csrf.ajax.js │ │ ├── ecommerce.js │ │ ├── ecommerce.main.js │ │ └── ecommerce.sales.js ├── tags │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── shell_commands.py │ ├── tests.py │ └── views.py └── templates │ ├── 400.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── base │ ├── css.html │ ├── forms.html │ ├── js.html │ ├── js_templates.html │ └── navbar.html │ ├── bootstrap │ └── example.html │ ├── contact │ └── view.html │ ├── home_page.html │ └── registration │ ├── activation-error.html │ ├── emails │ ├── verify.html │ └── verify.txt │ ├── password_change_done.html │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_email.txt │ └── password_reset_form.html └── static_cdn ├── media_root └── products │ ├── 470776353 │ └── 470776353.png │ ├── 1130260399 │ └── 1130260399.png │ ├── 1916522416 │ └── 1916522416.png │ ├── 2473283945 │ └── 2473283945.sublime-project │ ├── 2969889474 │ └── 2969889474.jpg │ └── Screen_Shot_2017-09-01_at_2.48.40_PM.png ├── protected_media └── product │ └── my-awesome-album │ ├── basic_audio.m4a │ ├── basic_audio_5W1qjNh.m4a │ ├── basic_audio_5W1qjNh_Ntvw9l5.m4a │ ├── basic_audio_DwLL00o.m4a │ ├── basic_audio_uuyWQIO.m4a │ └── basic_audio_uuyWQIO_soaLtH9.m4a └── static_root ├── admin ├── css │ ├── base.css │ ├── changelists.css │ ├── dashboard.css │ ├── fonts.css │ ├── forms.css │ ├── login.css │ ├── rtl.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-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 │ ├── actions.min.js │ ├── admin │ ├── DateTimeShortcuts.js │ └── RelatedObjectLookups.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── collapse.js │ ├── collapse.min.js │ ├── core.js │ ├── inlines.js │ ├── inlines.min.js │ ├── jquery.init.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate.min.js │ ├── prepopulate_init.js │ ├── timeparse.js │ ├── urlify.js │ └── vendor │ ├── jquery │ ├── LICENSE-JQUERY.txt │ ├── jquery.js │ └── jquery.min.js │ └── xregexp │ ├── LICENSE-XREGEXP.txt │ ├── xregexp.js │ └── xregexp.min.js ├── css ├── main.css └── stripe-custom-style.css ├── img └── beach.jpg └── js ├── csrf.ajax.js ├── ecommerce.js └── ecommerce.main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/README.md -------------------------------------------------------------------------------- /ecommerce.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/ecommerce.code-workspace -------------------------------------------------------------------------------- /ecommerce.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/ecommerce.sublime-project -------------------------------------------------------------------------------- /ecommerce.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/ecommerce.sublime-workspace -------------------------------------------------------------------------------- /fasttracktojquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/fasttracktojquery/index.html -------------------------------------------------------------------------------- /notes/checkout_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/notes/checkout_process.md -------------------------------------------------------------------------------- /parse_git_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/parse_git_log.py -------------------------------------------------------------------------------- /pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/pyvenv.cfg -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn ecommerce.wsgi -------------------------------------------------------------------------------- /src/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/admin.py -------------------------------------------------------------------------------- /src/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/apps.py -------------------------------------------------------------------------------- /src/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/forms.py -------------------------------------------------------------------------------- /src/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/accounts/migrations/0002_user_full_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/migrations/0002_user_full_name.py -------------------------------------------------------------------------------- /src/accounts/migrations/0003_user_is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/migrations/0003_user_is_active.py -------------------------------------------------------------------------------- /src/accounts/migrations/0004_remove_user_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/migrations/0004_remove_user_active.py -------------------------------------------------------------------------------- /src/accounts/migrations/0005_emailactivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/migrations/0005_emailactivation.py -------------------------------------------------------------------------------- /src/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/models.py -------------------------------------------------------------------------------- /src/accounts/passwords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/accounts/passwords/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/passwords/urls.py -------------------------------------------------------------------------------- /src/accounts/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/signals.py -------------------------------------------------------------------------------- /src/accounts/templates/accounts/detail-update-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/templates/accounts/detail-update-view.html -------------------------------------------------------------------------------- /src/accounts/templates/accounts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/templates/accounts/home.html -------------------------------------------------------------------------------- /src/accounts/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/templates/accounts/login.html -------------------------------------------------------------------------------- /src/accounts/templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/templates/accounts/register.html -------------------------------------------------------------------------------- /src/accounts/templates/accounts/snippets/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/templates/accounts/snippets/form.html -------------------------------------------------------------------------------- /src/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/tests.py -------------------------------------------------------------------------------- /src/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/urls.py -------------------------------------------------------------------------------- /src/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/accounts/views.py -------------------------------------------------------------------------------- /src/addresses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/addresses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/admin.py -------------------------------------------------------------------------------- /src/addresses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/apps.py -------------------------------------------------------------------------------- /src/addresses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/forms.py -------------------------------------------------------------------------------- /src/addresses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/addresses/migrations/0002_auto_20171107_0055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/migrations/0002_auto_20171107_0055.py -------------------------------------------------------------------------------- /src/addresses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/addresses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/models.py -------------------------------------------------------------------------------- /src/addresses/templates/addresses/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/templates/addresses/form.html -------------------------------------------------------------------------------- /src/addresses/templates/addresses/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/templates/addresses/list.html -------------------------------------------------------------------------------- /src/addresses/templates/addresses/prev_addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/templates/addresses/prev_addresses.html -------------------------------------------------------------------------------- /src/addresses/templates/addresses/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/templates/addresses/update.html -------------------------------------------------------------------------------- /src/addresses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/tests.py -------------------------------------------------------------------------------- /src/addresses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/addresses/views.py -------------------------------------------------------------------------------- /src/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/analytics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/admin.py -------------------------------------------------------------------------------- /src/analytics/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/apps.py -------------------------------------------------------------------------------- /src/analytics/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/analytics/migrations/0002_usersession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/migrations/0002_usersession.py -------------------------------------------------------------------------------- /src/analytics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/analytics/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/mixins.py -------------------------------------------------------------------------------- /src/analytics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/models.py -------------------------------------------------------------------------------- /src/analytics/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/signals.py -------------------------------------------------------------------------------- /src/analytics/templates/analytics/sales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/templates/analytics/sales.html -------------------------------------------------------------------------------- /src/analytics/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/tests.py -------------------------------------------------------------------------------- /src/analytics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/utils.py -------------------------------------------------------------------------------- /src/analytics/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/analytics/views.py -------------------------------------------------------------------------------- /src/billing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/billing/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/admin.py -------------------------------------------------------------------------------- /src/billing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/apps.py -------------------------------------------------------------------------------- /src/billing/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/billing/migrations/0002_auto_20170928_2052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0002_auto_20170928_2052.py -------------------------------------------------------------------------------- /src/billing/migrations/0003_billingprofile_customer_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0003_billingprofile_customer_id.py -------------------------------------------------------------------------------- /src/billing/migrations/0004_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0004_card.py -------------------------------------------------------------------------------- /src/billing/migrations/0005_card_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0005_card_default.py -------------------------------------------------------------------------------- /src/billing/migrations/0006_charge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0006_charge.py -------------------------------------------------------------------------------- /src/billing/migrations/0007_auto_20171012_1935.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/migrations/0007_auto_20171012_1935.py -------------------------------------------------------------------------------- /src/billing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/billing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/models.py -------------------------------------------------------------------------------- /src/billing/templates/billing/payment-method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/templates/billing/payment-method.html -------------------------------------------------------------------------------- /src/billing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/tests.py -------------------------------------------------------------------------------- /src/billing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/billing/views.py -------------------------------------------------------------------------------- /src/carts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/carts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/admin.py -------------------------------------------------------------------------------- /src/carts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/apps.py -------------------------------------------------------------------------------- /src/carts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/carts/migrations/0002_cart_subtotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/migrations/0002_cart_subtotal.py -------------------------------------------------------------------------------- /src/carts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/carts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/models.py -------------------------------------------------------------------------------- /src/carts/templates/carts/checkout-done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/templates/carts/checkout-done.html -------------------------------------------------------------------------------- /src/carts/templates/carts/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/templates/carts/checkout.html -------------------------------------------------------------------------------- /src/carts/templates/carts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/templates/carts/home.html -------------------------------------------------------------------------------- /src/carts/templates/carts/snippets/remove-product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/templates/carts/snippets/remove-product.html -------------------------------------------------------------------------------- /src/carts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/tests.py -------------------------------------------------------------------------------- /src/carts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/urls.py -------------------------------------------------------------------------------- /src/carts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/carts/views.py -------------------------------------------------------------------------------- /src/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/db.sqlite3 -------------------------------------------------------------------------------- /src/db2.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/db2.sqlite3 -------------------------------------------------------------------------------- /src/ecommerce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ecommerce/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ecommerce/aws/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/aws/conf.py -------------------------------------------------------------------------------- /src/ecommerce/aws/download/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ecommerce/aws/download/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/aws/download/utils.py -------------------------------------------------------------------------------- /src/ecommerce/aws/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/aws/utils.py -------------------------------------------------------------------------------- /src/ecommerce/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/forms.py -------------------------------------------------------------------------------- /src/ecommerce/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/mixins.py -------------------------------------------------------------------------------- /src/ecommerce/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/settings/__init__.py -------------------------------------------------------------------------------- /src/ecommerce/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/settings/base.py -------------------------------------------------------------------------------- /src/ecommerce/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/settings/local.py -------------------------------------------------------------------------------- /src/ecommerce/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/settings/production.py -------------------------------------------------------------------------------- /src/ecommerce/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/urls.py -------------------------------------------------------------------------------- /src/ecommerce/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/utils.py -------------------------------------------------------------------------------- /src/ecommerce/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/views.py -------------------------------------------------------------------------------- /src/ecommerce/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/ecommerce/wsgi.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/marketing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/marketing/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/admin.py -------------------------------------------------------------------------------- /src/marketing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/apps.py -------------------------------------------------------------------------------- /src/marketing/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/forms.py -------------------------------------------------------------------------------- /src/marketing/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/marketing/migrations/0002_marketingpreference_mailchimp_subscribed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/migrations/0002_marketingpreference_mailchimp_subscribed.py -------------------------------------------------------------------------------- /src/marketing/migrations/0003_auto_20171018_0142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/migrations/0003_auto_20171018_0142.py -------------------------------------------------------------------------------- /src/marketing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/marketing/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/mixins.py -------------------------------------------------------------------------------- /src/marketing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/models.py -------------------------------------------------------------------------------- /src/marketing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/tests.py -------------------------------------------------------------------------------- /src/marketing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/utils.py -------------------------------------------------------------------------------- /src/marketing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/marketing/views.py -------------------------------------------------------------------------------- /src/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/admin.py -------------------------------------------------------------------------------- /src/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/apps.py -------------------------------------------------------------------------------- /src/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/orders/migrations/0002_auto_20170928_2224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0002_auto_20170928_2224.py -------------------------------------------------------------------------------- /src/orders/migrations/0003_auto_20170929_0013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0003_auto_20170929_0013.py -------------------------------------------------------------------------------- /src/orders/migrations/0004_auto_20171025_2216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0004_auto_20171025_2216.py -------------------------------------------------------------------------------- /src/orders/migrations/0005_auto_20171107_0035.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0005_auto_20171107_0035.py -------------------------------------------------------------------------------- /src/orders/migrations/0006_productpurchase_productpurchasemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0006_productpurchase_productpurchasemanager.py -------------------------------------------------------------------------------- /src/orders/migrations/0007_auto_20171108_0028.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0007_auto_20171108_0028.py -------------------------------------------------------------------------------- /src/orders/migrations/0008_delete_productpurchasemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/migrations/0008_delete_productpurchasemanager.py -------------------------------------------------------------------------------- /src/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/models.py -------------------------------------------------------------------------------- /src/orders/templates/orders/library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/templates/orders/library.html -------------------------------------------------------------------------------- /src/orders/templates/orders/order_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/templates/orders/order_detail.html -------------------------------------------------------------------------------- /src/orders/templates/orders/order_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/templates/orders/order_list.html -------------------------------------------------------------------------------- /src/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/tests.py -------------------------------------------------------------------------------- /src/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/urls.py -------------------------------------------------------------------------------- /src/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/orders/views.py -------------------------------------------------------------------------------- /src/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/admin.py -------------------------------------------------------------------------------- /src/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/apps.py -------------------------------------------------------------------------------- /src/products/fixtures/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/fixtures/products.json -------------------------------------------------------------------------------- /src/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/products/migrations/0002_product_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0002_product_price.py -------------------------------------------------------------------------------- /src/products/migrations/0003_product_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0003_product_image.py -------------------------------------------------------------------------------- /src/products/migrations/0004_auto_20170901_2159.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0004_auto_20170901_2159.py -------------------------------------------------------------------------------- /src/products/migrations/0005_product_featured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0005_product_featured.py -------------------------------------------------------------------------------- /src/products/migrations/0006_auto_20170901_2254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0006_auto_20170901_2254.py -------------------------------------------------------------------------------- /src/products/migrations/0007_auto_20170901_2254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0007_auto_20170901_2254.py -------------------------------------------------------------------------------- /src/products/migrations/0008_auto_20170901_2300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0008_auto_20170901_2300.py -------------------------------------------------------------------------------- /src/products/migrations/0009_product_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0009_product_timestamp.py -------------------------------------------------------------------------------- /src/products/migrations/0010_product_is_digital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0010_product_is_digital.py -------------------------------------------------------------------------------- /src/products/migrations/0011_productfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0011_productfile.py -------------------------------------------------------------------------------- /src/products/migrations/0012_auto_20171108_2325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0012_auto_20171108_2325.py -------------------------------------------------------------------------------- /src/products/migrations/0013_auto_20171109_0023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0013_auto_20171109_0023.py -------------------------------------------------------------------------------- /src/products/migrations/0014_auto_20171116_0011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0014_auto_20171116_0011.py -------------------------------------------------------------------------------- /src/products/migrations/0015_productfile_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/migrations/0015_productfile_name.py -------------------------------------------------------------------------------- /src/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/models.py -------------------------------------------------------------------------------- /src/products/templates/products/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/templates/products/detail.html -------------------------------------------------------------------------------- /src/products/templates/products/featured-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/templates/products/featured-detail.html -------------------------------------------------------------------------------- /src/products/templates/products/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/templates/products/list.html -------------------------------------------------------------------------------- /src/products/templates/products/snippets/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/templates/products/snippets/card.html -------------------------------------------------------------------------------- /src/products/templates/products/snippets/update-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/templates/products/snippets/update-cart.html -------------------------------------------------------------------------------- /src/products/templates/products/user-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/templates/products/user-history.html -------------------------------------------------------------------------------- /src/products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/tests.py -------------------------------------------------------------------------------- /src/products/understanding_crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/understanding_crud.md -------------------------------------------------------------------------------- /src/products/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/urls.py -------------------------------------------------------------------------------- /src/products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/products/views.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.2 -------------------------------------------------------------------------------- /src/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/admin.py -------------------------------------------------------------------------------- /src/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/apps.py -------------------------------------------------------------------------------- /src/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/models.py -------------------------------------------------------------------------------- /src/search/templates/search/snippets/search-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/templates/search/snippets/search-form.html -------------------------------------------------------------------------------- /src/search/templates/search/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/templates/search/view.html -------------------------------------------------------------------------------- /src/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/tests.py -------------------------------------------------------------------------------- /src/search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/urls.py -------------------------------------------------------------------------------- /src/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/search/views.py -------------------------------------------------------------------------------- /src/static_my_proj/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #ccc; 3 | } -------------------------------------------------------------------------------- /src/static_my_proj/css/stripe-custom-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/static_my_proj/css/stripe-custom-style.css -------------------------------------------------------------------------------- /src/static_my_proj/img/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/static_my_proj/img/beach.jpg -------------------------------------------------------------------------------- /src/static_my_proj/js/csrf.ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/static_my_proj/js/csrf.ajax.js -------------------------------------------------------------------------------- /src/static_my_proj/js/ecommerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/static_my_proj/js/ecommerce.js -------------------------------------------------------------------------------- /src/static_my_proj/js/ecommerce.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/static_my_proj/js/ecommerce.main.js -------------------------------------------------------------------------------- /src/static_my_proj/js/ecommerce.sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/static_my_proj/js/ecommerce.sales.js -------------------------------------------------------------------------------- /src/tags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tags/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/tags/admin.py -------------------------------------------------------------------------------- /src/tags/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/tags/apps.py -------------------------------------------------------------------------------- /src/tags/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/tags/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/tags/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tags/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/tags/models.py -------------------------------------------------------------------------------- /src/tags/shell_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/tags/shell_commands.py -------------------------------------------------------------------------------- /src/tags/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/tags/tests.py -------------------------------------------------------------------------------- /src/tags/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /src/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/400.html -------------------------------------------------------------------------------- /src/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/403.html -------------------------------------------------------------------------------- /src/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/404.html -------------------------------------------------------------------------------- /src/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/500.html -------------------------------------------------------------------------------- /src/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/base.html -------------------------------------------------------------------------------- /src/templates/base/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/base/css.html -------------------------------------------------------------------------------- /src/templates/base/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/base/forms.html -------------------------------------------------------------------------------- /src/templates/base/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/base/js.html -------------------------------------------------------------------------------- /src/templates/base/js_templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/base/js_templates.html -------------------------------------------------------------------------------- /src/templates/base/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/base/navbar.html -------------------------------------------------------------------------------- /src/templates/bootstrap/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/bootstrap/example.html -------------------------------------------------------------------------------- /src/templates/contact/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/contact/view.html -------------------------------------------------------------------------------- /src/templates/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/home_page.html -------------------------------------------------------------------------------- /src/templates/registration/activation-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/activation-error.html -------------------------------------------------------------------------------- /src/templates/registration/emails/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/emails/verify.html -------------------------------------------------------------------------------- /src/templates/registration/emails/verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/emails/verify.txt -------------------------------------------------------------------------------- /src/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /src/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /src/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /src/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /src/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /src/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /src/templates/registration/password_reset_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_reset_email.txt -------------------------------------------------------------------------------- /src/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/src/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /static_cdn/media_root/products/1130260399/1130260399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/media_root/products/1130260399/1130260399.png -------------------------------------------------------------------------------- /static_cdn/media_root/products/1916522416/1916522416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/media_root/products/1916522416/1916522416.png -------------------------------------------------------------------------------- /static_cdn/media_root/products/2473283945/2473283945.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/media_root/products/2473283945/2473283945.sublime-project -------------------------------------------------------------------------------- /static_cdn/media_root/products/2969889474/2969889474.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/media_root/products/2969889474/2969889474.jpg -------------------------------------------------------------------------------- /static_cdn/media_root/products/470776353/470776353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/media_root/products/470776353/470776353.png -------------------------------------------------------------------------------- /static_cdn/media_root/products/Screen_Shot_2017-09-01_at_2.48.40_PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/media_root/products/Screen_Shot_2017-09-01_at_2.48.40_PM.png -------------------------------------------------------------------------------- /static_cdn/protected_media/product/my-awesome-album/basic_audio.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/protected_media/product/my-awesome-album/basic_audio.m4a -------------------------------------------------------------------------------- /static_cdn/protected_media/product/my-awesome-album/basic_audio_5W1qjNh.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/protected_media/product/my-awesome-album/basic_audio_5W1qjNh.m4a -------------------------------------------------------------------------------- /static_cdn/protected_media/product/my-awesome-album/basic_audio_5W1qjNh_Ntvw9l5.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/protected_media/product/my-awesome-album/basic_audio_5W1qjNh_Ntvw9l5.m4a -------------------------------------------------------------------------------- /static_cdn/protected_media/product/my-awesome-album/basic_audio_DwLL00o.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/protected_media/product/my-awesome-album/basic_audio_DwLL00o.m4a -------------------------------------------------------------------------------- /static_cdn/protected_media/product/my-awesome-album/basic_audio_uuyWQIO.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/protected_media/product/my-awesome-album/basic_audio_uuyWQIO.m4a -------------------------------------------------------------------------------- /static_cdn/protected_media/product/my-awesome-album/basic_audio_uuyWQIO_soaLtH9.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/protected_media/product/my-awesome-album/basic_audio_uuyWQIO_soaLtH9.m4a -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/base.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/changelists.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/dashboard.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/fonts.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/forms.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/login.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/rtl.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/css/widgets.css -------------------------------------------------------------------------------- /static_cdn/static_root/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static_cdn/static_root/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/fonts/README.txt -------------------------------------------------------------------------------- /static_cdn/static_root/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static_cdn/static_root/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static_cdn/static_root/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/LICENSE -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/README.txt -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/search.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/actions.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/actions.min.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/calendar.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/cancel.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/change_form.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/collapse.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/core.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/inlines.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/popup_response.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/timeparse.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/urlify.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/vendor/jquery/LICENSE-JQUERY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/vendor/jquery/LICENSE-JQUERY.txt -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /static_cdn/static_root/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /static_cdn/static_root/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #ccc; 3 | } -------------------------------------------------------------------------------- /static_cdn/static_root/css/stripe-custom-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/css/stripe-custom-style.css -------------------------------------------------------------------------------- /static_cdn/static_root/img/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/img/beach.jpg -------------------------------------------------------------------------------- /static_cdn/static_root/js/csrf.ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/js/csrf.ajax.js -------------------------------------------------------------------------------- /static_cdn/static_root/js/ecommerce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/js/ecommerce.js -------------------------------------------------------------------------------- /static_cdn/static_root/js/ecommerce.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/eCommerce/HEAD/static_cdn/static_root/js/ecommerce.main.js --------------------------------------------------------------------------------