├── .coveragerc ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .mailmap ├── .travis.yml ├── .tx └── config ├── AUTHORS ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── codecov.yml ├── docker-compose.yml ├── docs ├── Makefile ├── images │ ├── logos │ │ ├── labs-ts-oscar.jpg │ │ ├── oscar.png │ │ └── tangentlabs.jpg │ ├── presentations │ │ └── oscon2012.png │ └── screenshots │ │ ├── anythinggift.png │ │ ├── anythinggift.thumb.png │ │ ├── audioapp.png │ │ ├── audioapp.thumb.png │ │ ├── basket.png │ │ ├── basket.thumb.png │ │ ├── bpm.thumb.png │ │ ├── browse.png │ │ ├── browse.thumb.png │ │ ├── carlsberg.cch.png │ │ ├── carlsberg.cch.thumb.png │ │ ├── chiyome.thumb.png │ │ ├── chocolatebox.png │ │ ├── chocolatebox.thumb.png │ │ ├── colinss.thumb.png │ │ ├── dadagraphix.png │ │ ├── dadagraphix.thumb.png │ │ ├── dashboard.png │ │ ├── dashboard.thumb.png │ │ ├── demo.browse.png │ │ ├── demo.browse.thumb.png │ │ ├── demo.home.png │ │ ├── demo.home.thumb.png │ │ ├── detail.png │ │ ├── detail.thumb.png │ │ ├── dolbeau.png │ │ ├── dolbeau.thumb.png │ │ ├── fpsport.thumb.png │ │ ├── freetix.png │ │ ├── freetix.thumb.png │ │ ├── garmsby.thumb.png │ │ ├── labourshop.png │ │ ├── labourshop.thumb.png │ │ ├── laivee.thumb.png │ │ ├── landmark.png │ │ ├── landmark.thumb.png │ │ ├── meridian.png │ │ ├── meridian.thumb.png │ │ ├── nailsinc.thumb.png │ │ ├── oscarcommerce.png │ │ ├── oscarcommerce.thumb.png │ │ ├── partecipacards.png │ │ ├── partecipacards.thumb.png │ │ ├── readthedocs.png │ │ ├── readthedocs.thumb.png │ │ ├── rightchoice.png │ │ ├── rightchoice.thumb.png │ │ ├── sobusa.png │ │ └── sobusa.thumb.png ├── requirements.txt └── source │ ├── conf.py │ ├── howto │ ├── enforcing_stock_rules.rst │ ├── how_to_change_a_url.rst │ ├── how_to_configure_shipping.rst │ ├── how_to_configure_stock_messaging.rst │ ├── how_to_configure_the_dashboard_navigation.rst │ ├── how_to_create_a_custom_benefit.rst │ ├── how_to_create_a_custom_condition.rst │ ├── how_to_create_a_custom_range.rst │ ├── how_to_create_categories.rst │ ├── how_to_customise_a_view.rst │ ├── how_to_customise_models.rst │ ├── how_to_customise_oscar_communications.rst │ ├── how_to_customise_templates.rst │ ├── how_to_disable_an_app.rst │ ├── how_to_handle_statics.rst │ ├── how_to_handle_us_taxes.rst │ ├── how_to_integrate_payment.rst │ ├── how_to_set_up_order_processing.rst │ ├── how_to_setup_solr.rst │ ├── importing_a_catalogue.rst │ ├── index.rst │ └── use_a_custom_user_model.rst │ ├── index.rst │ ├── internals │ ├── contributing │ │ ├── bugs-and-features.rst │ │ ├── coding-style.rst │ │ ├── development-environment.rst │ │ ├── index.rst │ │ ├── running-tests.rst │ │ ├── submitting-pull-requests.rst │ │ └── writing-documentation.rst │ ├── design-decisions.rst │ ├── getting_help.rst │ ├── getting_started.rst │ └── sandbox.rst │ ├── ref │ ├── apps │ │ ├── address.rst │ │ ├── analytics.rst │ │ ├── basket.rst │ │ ├── catalogue.rst │ │ ├── checkout.rst │ │ ├── customer.rst │ │ ├── dashboard.rst │ │ ├── index.rst │ │ ├── offer.rst │ │ ├── order.rst │ │ ├── partner.rst │ │ ├── payment.rst │ │ ├── promotions.rst │ │ ├── search.rst │ │ ├── shipping.rst │ │ ├── voucher.rst │ │ └── wishlists.rst │ ├── core.rst │ ├── glossary.rst │ ├── settings.rst │ ├── signals.rst │ └── templatetags.rst │ ├── releases │ ├── index.rst │ ├── screenshots │ │ ├── 0.5 │ │ │ ├── dashboard-nav.png │ │ │ ├── html_flash_msg.png │ │ │ ├── offer-restrictions.png │ │ │ └── transifex.png │ │ └── 0.6 │ │ │ ├── account.png │ │ │ ├── range_detail.png │ │ │ ├── tinymce.png │ │ │ ├── wishlist-button.png │ │ │ └── wishlist-detail.png │ ├── v0.5.1.rst │ ├── v0.5.2.rst │ ├── v0.5.3.rst │ ├── v0.5.rst │ ├── v0.6.1.rst │ ├── v0.6.2.rst │ ├── v0.6.3.rst │ ├── v0.6.4.rst │ ├── v0.6.5.rst │ ├── v0.6.rst │ ├── v0.7.1.rst │ ├── v0.7.2.rst │ ├── v0.7.3.rst │ ├── v0.7.rst │ ├── v1.0.1.rst │ ├── v1.0.2.rst │ ├── v1.0.rst │ ├── v1.1.1.rst │ ├── v1.1.rst │ ├── v1.2.1.rst │ ├── v1.2.2.rst │ ├── v1.2.rst │ └── v1.3.rst │ └── topics │ ├── class_loading_explained.rst │ ├── customisation.rst │ ├── deploying.rst │ ├── fork_app.rst │ ├── key_questions.rst │ ├── modelling_your_catalogue.rst │ ├── prices_and_availability.rst │ ├── translation.rst │ └── upgrading.rst ├── gulpfile.js ├── index.js └── tasks │ ├── default.js │ ├── less.js │ └── watch.js ├── package.json ├── requirements.txt ├── requirements_migrations.txt ├── runtests.py ├── sandbox.yml ├── setup.cfg ├── setup.py ├── sites ├── README.rst ├── _fixtures │ ├── auth.json │ ├── comms.json │ ├── offers.json │ ├── order-events.json │ ├── pages.json │ ├── promotions.json │ ├── range-products.csv │ └── ranges.json └── sandbox │ ├── README.rst │ ├── __init__.py │ ├── apps │ ├── __init__.py │ ├── gateway │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ ├── offers.py │ ├── sitemaps.py │ └── user │ │ ├── __init__.py │ │ └── models.py │ ├── fixtures │ ├── books.computers-in-fiction.csv │ ├── books.essential.csv │ ├── books.hacking.csv │ ├── child_products.json │ ├── images.tar.gz │ ├── multi-stockrecord-product.json │ └── orders.json │ ├── manage.py │ ├── settings.py │ ├── settings_mysql.py │ ├── settings_postgres.py │ ├── settings_sphinx.py │ ├── static │ ├── .gitignore │ └── robots.txt │ ├── templates │ └── gateway │ │ ├── email.txt │ │ └── form.html │ ├── test_migrations.sh │ ├── update_latest.sh │ ├── urls.py │ ├── uwsgi.ini │ └── wsgi.py ├── src └── oscar │ ├── __init__.py │ ├── app.py │ ├── apps │ ├── __init__.py │ ├── address │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ ├── analytics │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20140827_1705.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ ├── reports.py │ │ └── scores.py │ ├── basket │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── app.py │ │ ├── config.py │ │ ├── forms.py │ │ ├── managers.py │ │ ├── middleware.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20140827_1705.py │ │ │ ├── 0003_basket_vouchers.py │ │ │ ├── 0004_auto_20141007_2032.py │ │ │ ├── 0005_auto_20150604_1450.py │ │ │ ├── 0006_auto_20160111_1108.py │ │ │ ├── 0007_slugfield_noop.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── reports.py │ │ ├── signals.py │ │ ├── utils.py │ │ └── views.py │ ├── catalogue │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── app.py │ │ ├── categories.py │ │ ├── config.py │ │ ├── exceptions.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150217_1221.py │ │ │ ├── 0003_data_migration_slugs.py │ │ │ ├── 0004_auto_20150217_1710.py │ │ │ ├── 0005_auto_20150604_1450.py │ │ │ ├── 0006_auto_20150807_1725.py │ │ │ ├── 0007_auto_20151207_1440.py │ │ │ ├── 0008_auto_20160304_1652.py │ │ │ ├── 0009_slugfield_noop.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── product_attributes.py │ │ ├── receivers.py │ │ ├── reviews │ │ │ ├── __init__.py │ │ │ ├── abstract_models.py │ │ │ ├── admin.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── managers.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_update_email_length.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── signals.py │ │ │ └── views.py │ │ ├── search_handlers.py │ │ ├── signals.py │ │ ├── utils.py │ │ └── views.py │ ├── checkout │ │ ├── __init__.py │ │ ├── app.py │ │ ├── calculators.py │ │ ├── config.py │ │ ├── context_processors.py │ │ ├── exceptions.py │ │ ├── forms.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── session.py │ │ ├── signals.py │ │ ├── utils.py │ │ └── views.py │ ├── customer │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── alerts │ │ │ ├── __init__.py │ │ │ ├── receivers.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── app.py │ │ ├── auth_backends.py │ │ ├── config.py │ │ ├── forms.py │ │ ├── history.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150807_1725.py │ │ │ ├── 0003_update_email_length.py │ │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── notifications │ │ │ ├── __init__.py │ │ │ ├── context_processors.py │ │ │ ├── services.py │ │ │ └── views.py │ │ ├── receivers.py │ │ ├── signals.py │ │ ├── utils.py │ │ ├── views.py │ │ └── wishlists │ │ │ ├── __init__.py │ │ │ └── views.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── app.py │ │ ├── catalogue │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── tables.py │ │ │ ├── views.py │ │ │ └── widgets.py │ │ ├── communications │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── config.py │ │ ├── menu.py │ │ ├── models.py │ │ ├── nav.py │ │ ├── offers │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── reports.py │ │ │ └── views.py │ │ ├── orders │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ └── views.py │ │ ├── pages │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ └── views.py │ │ ├── partners │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ └── views.py │ │ ├── promotions │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ └── views.py │ │ ├── ranges │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── reports │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── reports.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── reviews │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── shipping │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ └── views.py │ │ ├── tables.py │ │ ├── users │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ ├── tables.py │ │ │ └── views.py │ │ ├── views.py │ │ └── vouchers │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── forms.py │ │ │ └── views.py │ ├── offer │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── app.py │ │ ├── applicator.py │ │ ├── benefits.py │ │ ├── conditions.py │ │ ├── config.py │ │ ├── custom.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20151210_1053.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── reports.py │ │ ├── results.py │ │ ├── utils.py │ │ └── views.py │ ├── order │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── exceptions.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20141007_2032.py │ │ │ ├── 0003_auto_20150113_1629.py │ │ │ ├── 0004_auto_20160111_1108.py │ │ │ ├── 0005_update_email_length.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── processing.py │ │ ├── reports.py │ │ ├── signals.py │ │ └── utils.py │ ├── partner │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── availability.py │ │ ├── config.py │ │ ├── exceptions.py │ │ ├── importers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20141007_2032.py │ │ │ ├── 0003_auto_20150604_1450.py │ │ │ ├── 0004_auto_20160107_1755.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── prices.py │ │ ├── receivers.py │ │ ├── strategy.py │ │ └── views.py │ ├── payment │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── bankcards.py │ │ ├── config.py │ │ ├── exceptions.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20141007_2032.py │ │ │ ├── 0003_auto_20160323_1520.py │ │ │ └── __init__.py │ │ └── models.py │ ├── promotions │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── app.py │ │ ├── conf.py │ │ ├── config.py │ │ ├── context_processors.py │ │ ├── layout.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150604_1450.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── views.py │ ├── search │ │ ├── __init__.py │ │ ├── app.py │ │ ├── config.py │ │ ├── context_processors.py │ │ ├── facets.py │ │ ├── features.py │ │ ├── forms.py │ │ ├── search_handlers.py │ │ ├── search_indexes.py │ │ ├── signals.py │ │ └── views.py │ ├── shipping │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── methods.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20150604_1450.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── repository.py │ │ └── scales.py │ ├── voucher │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── receivers.py │ │ └── reports.py │ └── wishlists │ │ ├── __init__.py │ │ ├── abstract_models.py │ │ ├── admin.py │ │ ├── config.py │ │ ├── forms.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160111_1108.py │ │ └── __init__.py │ │ └── models.py │ ├── core │ ├── __init__.py │ ├── ajax.py │ ├── application.py │ ├── compat.py │ ├── context_processors.py │ ├── customisation.py │ ├── decorators.py │ ├── exceptions.py │ ├── loading.py │ ├── logging │ │ ├── __init__.py │ │ ├── formatters.py │ │ └── handlers.py │ ├── phonenumber.py │ ├── prices.py │ ├── utils.py │ └── validators.py │ ├── defaults.py │ ├── forms │ ├── __init__.py │ ├── fields.py │ └── widgets.py │ ├── locale │ ├── am_ET │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ar_SA │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bn_BD │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cmn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs_CZ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── el_GR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en_US │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_CL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa_IR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hi_IN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ka_GE │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb_NO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro_RO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk_SK │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── th_TH │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk_UA │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh-Hant │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_HK │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_TW.Big5 │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── oscar_calculate_scores.py │ │ ├── oscar_cleanup_alerts.py │ │ ├── oscar_find_duplicate_emails.py │ │ ├── oscar_fork_app.py │ │ ├── oscar_fork_statics.py │ │ ├── oscar_generate_email_content.py │ │ ├── oscar_import_catalogue.py │ │ ├── oscar_import_catalogue_images.py │ │ ├── oscar_populate_countries.py │ │ ├── oscar_send_alerts.py │ │ └── oscar_update_product_ratings.py │ ├── models │ ├── __init__.py │ └── fields │ │ ├── __init__.py │ │ ├── autoslugfield.py │ │ └── slugfield.py │ ├── profiling │ ├── __init__.py │ ├── decorators.py │ └── middleware.py │ ├── static │ └── oscar │ │ ├── README.rst │ │ ├── css │ │ ├── README.rst │ │ ├── dashboard.css │ │ ├── dashboard.css.map │ │ ├── datetimepicker.css │ │ ├── select2-bootstrap.css │ │ ├── styles.css │ │ └── styles.css.map │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── image_not_found.jpg │ │ └── ui │ │ │ ├── ajax-loader.gif │ │ │ ├── black.png │ │ │ ├── dashboard │ │ │ ├── bg_subtle_dots.png │ │ │ └── logo_oscar.png │ │ │ ├── icon_arrow_down.png │ │ │ ├── icon_arrow_left.png │ │ │ ├── icon_minus.png │ │ │ ├── icon_plus.png │ │ │ ├── icon_slider_left.png │ │ │ ├── icon_slider_right.png │ │ │ └── nav_sprite.png │ │ ├── js │ │ ├── bootstrap-datetimepicker │ │ │ ├── bootstrap-datetimepicker.css │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.all.js │ │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── bootstrap3 │ │ │ └── bootstrap.min.js │ │ ├── inputmask │ │ │ ├── jquery.inputmask.bundle.js │ │ │ └── jquery.inputmask.bundle.min.js │ │ ├── jquery-sortable │ │ │ └── jquery-sortable-min.js │ │ ├── jquery │ │ │ ├── jquery-1.9.1.min.js │ │ │ └── jquery-ui-1.10.3.min.js │ │ ├── mousewheel │ │ │ └── jquery.mousewheel.min.js │ │ ├── oscar │ │ │ ├── dashboard.js │ │ │ └── ui.js │ │ └── select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ └── less │ │ ├── README.rst │ │ ├── bootstrap3 │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ │ ├── dashboard.less │ │ ├── dashboard │ │ ├── alerts.less │ │ ├── base.less │ │ ├── buttons.less │ │ ├── catalogue.less │ │ ├── datetimepicker.less │ │ ├── forms.less │ │ ├── index.less │ │ ├── login.less │ │ ├── mixins.less │ │ ├── navbar.less │ │ ├── order.less │ │ ├── sortable.less │ │ ├── tables.less │ │ └── variables.less │ │ ├── font-awesome │ │ ├── bootstrap.less │ │ ├── core.less │ │ ├── extras.less │ │ ├── font-awesome-ie7.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── mixins.less │ │ ├── path.less │ │ └── variables.less │ │ ├── page │ │ ├── alerts.less │ │ ├── checkout.less │ │ ├── forms.less │ │ ├── header.less │ │ ├── layout.less │ │ ├── mixins.less │ │ ├── plugins.less │ │ ├── product_lists.less │ │ ├── product_page.less │ │ ├── promotions.less │ │ ├── responsive-767px-max.less │ │ ├── reviews.less │ │ ├── type.less │ │ └── wells.less │ │ └── styles.less │ ├── templates │ ├── README.rst │ └── oscar │ │ ├── 403.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── README.rst │ │ ├── base.html │ │ ├── basket │ │ ├── basket.html │ │ ├── messages │ │ │ ├── addition.html │ │ │ ├── line_restored.html │ │ │ ├── line_saved.html │ │ │ ├── new_total.html │ │ │ ├── offer_gained.html │ │ │ └── offer_lost.html │ │ └── partials │ │ │ ├── basket_content.html │ │ │ ├── basket_quick.html │ │ │ └── basket_totals.html │ │ ├── catalogue │ │ ├── browse.html │ │ ├── category.html │ │ ├── detail.html │ │ ├── partials │ │ │ ├── add_to_basket_form.html │ │ │ ├── add_to_basket_form_compact.html │ │ │ ├── add_to_wishlist.html │ │ │ ├── gallery.html │ │ │ ├── product.html │ │ │ ├── review.html │ │ │ └── stock_record.html │ │ └── reviews │ │ │ ├── partials │ │ │ └── review_stars.html │ │ │ ├── review_detail.html │ │ │ ├── review_form.html │ │ │ ├── review_list.html │ │ │ └── review_product.html │ │ ├── checkout │ │ ├── checkout.html │ │ ├── gateway.html │ │ ├── layout.html │ │ ├── nav.html │ │ ├── payment_details.html │ │ ├── preview.html │ │ ├── shipping_address.html │ │ ├── shipping_methods.html │ │ ├── thank_you.html │ │ ├── user_address_delete.html │ │ └── user_address_form.html │ │ ├── customer │ │ ├── address │ │ │ ├── address_delete.html │ │ │ ├── address_form.html │ │ │ └── address_list.html │ │ ├── alerts │ │ │ ├── alert_list.html │ │ │ ├── emails │ │ │ │ ├── alert_body.txt │ │ │ │ ├── alert_subject.txt │ │ │ │ ├── confirmation_body.txt │ │ │ │ └── confirmation_subject.txt │ │ │ ├── form.html │ │ │ └── message.html │ │ ├── anon_order.html │ │ ├── baseaccountpage.html │ │ ├── email │ │ │ ├── email_detail.html │ │ │ └── email_list.html │ │ ├── emails │ │ │ ├── base.html │ │ │ ├── base.txt │ │ │ ├── commtype_email_changed_body.html │ │ │ ├── commtype_email_changed_body.txt │ │ │ ├── commtype_email_changed_subject.txt │ │ │ ├── commtype_order_placed_body.html │ │ │ ├── commtype_order_placed_body.txt │ │ │ ├── commtype_order_placed_subject.txt │ │ │ ├── commtype_password_changed_body.html │ │ │ ├── commtype_password_changed_body.txt │ │ │ ├── commtype_password_changed_subject.txt │ │ │ ├── commtype_password_reset_body.html │ │ │ ├── commtype_password_reset_body.txt │ │ │ ├── commtype_password_reset_subject.txt │ │ │ ├── commtype_registration_body.html │ │ │ ├── commtype_registration_body.txt │ │ │ ├── commtype_registration_sms.txt │ │ │ └── commtype_registration_subject.txt │ │ ├── history │ │ │ └── recently_viewed_products.html │ │ ├── login_registration.html │ │ ├── notifications │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── order │ │ │ ├── order_detail.html │ │ │ └── order_list.html │ │ ├── partials │ │ │ └── nav_account.html │ │ ├── profile │ │ │ ├── change_password_form.html │ │ │ ├── profile.html │ │ │ ├── profile_delete.html │ │ │ └── profile_form.html │ │ ├── registration.html │ │ └── wishlists │ │ │ ├── wishlists_delete.html │ │ │ ├── wishlists_delete_product.html │ │ │ ├── wishlists_detail.html │ │ │ ├── wishlists_form.html │ │ │ └── wishlists_list.html │ │ ├── dashboard │ │ ├── base.html │ │ ├── catalogue │ │ │ ├── category_delete.html │ │ │ ├── category_form.html │ │ │ ├── category_list.html │ │ │ ├── category_row_actions.html │ │ │ ├── messages │ │ │ │ └── product_saved.html │ │ │ ├── product_class_delete.html │ │ │ ├── product_class_form.html │ │ │ ├── product_class_list.html │ │ │ ├── product_delete.html │ │ │ ├── product_list.html │ │ │ ├── product_row_actions.html │ │ │ ├── product_row_image.html │ │ │ ├── product_row_stockrecords.html │ │ │ ├── product_row_title.html │ │ │ ├── product_row_variants.html │ │ │ ├── product_update.html │ │ │ └── stockalert_list.html │ │ ├── comms │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── offers │ │ │ ├── benefit_form.html │ │ │ ├── condition_form.html │ │ │ ├── metadata_form.html │ │ │ ├── offer_delete.html │ │ │ ├── offer_detail.html │ │ │ ├── offer_list.html │ │ │ ├── progress.html │ │ │ ├── restrictions_form.html │ │ │ ├── step_form.html │ │ │ └── summary.html │ │ ├── orders │ │ │ ├── line_detail.html │ │ │ ├── order_detail.html │ │ │ ├── order_list.html │ │ │ ├── partials │ │ │ │ └── bulk_edit_form.html │ │ │ ├── shippingaddress_form.html │ │ │ └── statistics.html │ │ ├── pages │ │ │ ├── delete.html │ │ │ ├── index.html │ │ │ ├── messages │ │ │ │ └── saved.html │ │ │ └── update.html │ │ ├── partials │ │ │ ├── alert_messages.html │ │ │ ├── form.html │ │ │ ├── form_field.html │ │ │ ├── form_fields.html │ │ │ ├── form_fields_inline.html │ │ │ ├── pagination.html │ │ │ ├── product_images.html │ │ │ └── stock_info.html │ │ ├── partners │ │ │ ├── messages │ │ │ │ └── user_unlinked.html │ │ │ ├── partner_delete.html │ │ │ ├── partner_form.html │ │ │ ├── partner_list.html │ │ │ ├── partner_manage.html │ │ │ ├── partner_user_form.html │ │ │ ├── partner_user_list.html │ │ │ └── partner_user_select.html │ │ ├── promotions │ │ │ ├── delete.html │ │ │ ├── delete_pagepromotion.html │ │ │ ├── form.html │ │ │ ├── handpickedproductlist_form.html │ │ │ ├── page_detail.html │ │ │ ├── pagepromotion_list.html │ │ │ └── promotion_list.html │ │ ├── ranges │ │ │ ├── messages │ │ │ │ ├── range_products_saved.html │ │ │ │ └── range_saved.html │ │ │ ├── range_delete.html │ │ │ ├── range_form.html │ │ │ ├── range_list.html │ │ │ └── range_product_list.html │ │ ├── reports │ │ │ ├── index.html │ │ │ └── partials │ │ │ │ ├── offer_report.html │ │ │ │ ├── open_basket_report.html │ │ │ │ ├── order_report.html │ │ │ │ ├── product_report.html │ │ │ │ ├── submitted_basket_report.html │ │ │ │ ├── user_report.html │ │ │ │ └── voucher_report.html │ │ ├── reviews │ │ │ ├── review_delete.html │ │ │ ├── review_list.html │ │ │ └── review_update.html │ │ ├── shipping │ │ │ ├── messages │ │ │ │ ├── band_created.html │ │ │ │ ├── band_deleted.html │ │ │ │ ├── band_updated.html │ │ │ │ ├── method_created.html │ │ │ │ ├── method_deleted.html │ │ │ │ └── method_updated.html │ │ │ ├── weight_band_delete.html │ │ │ ├── weight_band_form.html │ │ │ ├── weight_based_delete.html │ │ │ ├── weight_based_detail.html │ │ │ ├── weight_based_form.html │ │ │ └── weight_based_list.html │ │ ├── table.html │ │ ├── users │ │ │ ├── alerts │ │ │ │ ├── delete.html │ │ │ │ ├── list.html │ │ │ │ ├── partials │ │ │ │ │ └── alert.html │ │ │ │ └── update.html │ │ │ ├── detail.html │ │ │ ├── index.html │ │ │ ├── table.html │ │ │ ├── user_row_actions.html │ │ │ └── user_row_checkbox.html │ │ └── vouchers │ │ │ ├── voucher_delete.html │ │ │ ├── voucher_detail.html │ │ │ ├── voucher_form.html │ │ │ └── voucher_list.html │ │ ├── error.html │ │ ├── flatpages │ │ └── default.html │ │ ├── layout.html │ │ ├── layout_2_col.html │ │ ├── layout_3_col.html │ │ ├── login_forbidden.html │ │ ├── offer │ │ ├── detail.html │ │ ├── list.html │ │ └── range.html │ │ ├── partials │ │ ├── alert_messages.html │ │ ├── brand.html │ │ ├── ellipses_pagination.html │ │ ├── extrascripts.html │ │ ├── footer.html │ │ ├── footer_checkout.html │ │ ├── form.html │ │ ├── form_field.html │ │ ├── form_fields.html │ │ ├── form_fields_inline.html │ │ ├── google_analytics.html │ │ ├── google_analytics_transaction.html │ │ ├── image_input_widget.html │ │ ├── mini_basket.html │ │ ├── nav_accounts.html │ │ ├── nav_checkout.html │ │ ├── nav_primary.html │ │ ├── pagination.html │ │ └── search.html │ │ ├── promotions │ │ ├── automaticproductlist.html │ │ ├── baseproductlist.html │ │ ├── default.html │ │ ├── handpickedproductlist.html │ │ ├── home.html │ │ ├── image.html │ │ ├── multiimage.html │ │ ├── rawhtml.html │ │ └── singleproduct.html │ │ ├── registration │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ └── password_reset_form.html │ │ └── search │ │ ├── indexes │ │ └── product │ │ │ └── item_text.txt │ │ ├── partials │ │ ├── facet.html │ │ └── pagination.html │ │ └── results.html │ ├── templatetags │ ├── __init__.py │ ├── basket_tags.py │ ├── category_tags.py │ ├── currency_filters.py │ ├── dashboard_tags.py │ ├── display_tags.py │ ├── ellipses_pagination.py │ ├── form_tags.py │ ├── history_tags.py │ ├── image_tags.py │ ├── product_tags.py │ ├── promotion_tags.py │ ├── purchase_info_tags.py │ ├── reviews_tags.py │ ├── shipping_tags.py │ ├── sorting_tags.py │ ├── string_filters.py │ └── wishlist_tags.py │ ├── test │ ├── __init__.py │ ├── basket.py │ ├── contextmanagers.py │ ├── decorators.py │ ├── factories │ │ ├── __init__.py │ │ ├── address.py │ │ ├── basket.py │ │ ├── catalogue.py │ │ ├── contrib.py │ │ ├── customer.py │ │ ├── offer.py │ │ ├── order.py │ │ ├── partner.py │ │ ├── payment.py │ │ ├── utils.py │ │ ├── voucher.py │ │ └── wishlists.py │ ├── newfactories.py │ ├── testcases.py │ └── utils.py │ └── views │ ├── __init__.py │ ├── decorators.py │ └── generic.py ├── tests ├── __init__.py ├── _site │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── customer │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20150807_1725.py │ │ │ │ ├── 0003_update_email_length.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── myapp │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── partner │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20141007_2032.py │ │ │ │ ├── 0003_auto_20150604_1450.py │ │ │ │ ├── 0004_auto_20160107_1755.py │ │ │ │ ├── 0005_stockrecord_offer_name.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ └── shipping │ │ │ ├── __init__.py │ │ │ ├── methods.py │ │ │ └── models.py │ ├── import_error_app │ │ ├── __init__.py │ │ └── catalogue │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ └── models.py │ ├── model_tests_app │ │ ├── __init__.py │ │ └── models.py │ ├── myauth │ │ ├── __init__.py │ │ └── models.py │ ├── shipping │ │ ├── __init__.py │ │ ├── methods.py │ │ └── models.py │ ├── templates │ │ ├── base.html │ │ ├── checkout │ │ │ └── payment_details.html │ │ └── layout.html │ ├── thirdparty_package │ │ ├── __init__.py │ │ └── apps │ │ │ ├── __init__.py │ │ │ └── myapp │ │ │ ├── __init__.py │ │ │ └── models.py │ └── urls.py ├── conftest.py ├── dynamic_fixtures.py ├── functional │ ├── __init__.py │ ├── basket │ │ ├── __init__.py │ │ └── manipulation_tests.py │ ├── basket_tests.py │ ├── catalogue │ │ ├── __init__.py │ │ ├── catalogue_tests.py │ │ └── review_tests.py │ ├── checkout │ │ ├── __init__.py │ │ ├── customer_checkout_tests.py │ │ ├── guest_checkout_tests.py │ │ └── session_tests.py │ ├── customer │ │ ├── __init__.py │ │ ├── alert_tests.py │ │ ├── auth_tests.py │ │ ├── history_tests.py │ │ ├── notification_tests.py │ │ ├── order_status_tests.py │ │ ├── profile_tests.py │ │ └── wishlists_tests.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── catalogue_tests.py │ │ ├── category_tests.py │ │ ├── communication_tests.py │ │ ├── dashboard_tests.py │ │ ├── offer_tests.py │ │ ├── order_tests.py │ │ ├── page_tests.py │ │ ├── partner_tests.py │ │ ├── product_tests.py │ │ ├── promotion_tests.py │ │ ├── range_tests.py │ │ ├── reports_tests.py │ │ ├── review_tests.py │ │ ├── shipping_tests.py │ │ └── user_tests.py │ ├── offer_tests.py │ └── stock_alert_tests.py ├── integration │ ├── __init__.py │ ├── address │ │ ├── __init__.py │ │ └── form_tests.py │ ├── auth_tests.py │ ├── basket │ │ ├── __init__.py │ │ ├── form_tests.py │ │ ├── model_tests.py │ │ └── view_tests.py │ ├── catalogue │ │ ├── __init__.py │ │ ├── category_tests.py │ │ ├── product_class_tests.py │ │ ├── product_image_tests.py │ │ ├── product_tests.py │ │ └── reviews │ │ │ ├── __init__.py │ │ │ ├── form_tests.py │ │ │ └── model_tests.py │ ├── core │ │ ├── __init__.py │ │ └── validator_tests.py │ ├── customer │ │ ├── __init__.py │ │ ├── test_custom_user_model.py │ │ └── test_dispatcher.py │ ├── dashboard │ │ ├── __init__.py │ │ └── nav_tests.py │ ├── forms │ │ ├── __init__.py │ │ └── field_tests.py │ ├── migrations_tests.py │ ├── offer │ │ ├── __init__.py │ │ ├── absolute_benefit_tests.py │ │ ├── applicator_tests.py │ │ ├── availability_tests.py │ │ ├── combination_tests.py │ │ ├── condition_tests.py │ │ ├── fixed_price_benefit_tests.py │ │ ├── manager_tests.py │ │ ├── multibuy_benefit_tests.py │ │ ├── percentage_benefit_tests.py │ │ ├── post_order_action_tests.py │ │ ├── priority_offers_tests.py │ │ ├── range_tests.py │ │ ├── reports_tests.py │ │ ├── shipping_benefit_tests.py │ │ ├── shipping_percentage_benefit_tests.py │ │ ├── status_tests.py │ │ ├── tax_tests.py │ │ └── weight_based_shipping_benefit_tests.py │ ├── order │ │ ├── __init__.py │ │ ├── creator_tests.py │ │ ├── event_handler_tests.py │ │ ├── model_tests.py │ │ └── reports_tests.py │ ├── partner │ │ ├── __init__.py │ │ ├── selector_mixin_tests.py │ │ ├── strategy_tests.py │ │ └── test_dashboard_views.py │ ├── payment │ │ ├── __init__.py │ │ └── model_tests.py │ ├── shipping │ │ ├── __init__.py │ │ ├── model_method_tests.py │ │ └── scales_tests.py │ └── templatetags │ │ ├── __init__.py │ │ └── test_currency_filters.py ├── settings.py └── unit │ ├── __init__.py │ ├── address │ ├── __init__.py │ └── model_tests.py │ ├── basket │ ├── __init__.py │ ├── middleware_tests.py │ ├── model_tests.py │ └── report_tests.py │ ├── catalogue │ ├── __init__.py │ ├── reviews │ │ ├── __init__.py │ │ └── form_tests.py │ ├── test_attributes.py │ ├── test_models.py │ └── test_product_search_handler_setting.py │ ├── checkout │ ├── __init__.py │ ├── calculator_tests.py │ ├── forms_tests.py │ ├── mixins_tests.py │ └── session_tests.py │ ├── core │ ├── __init__.py │ ├── autoslugfield_tests.py │ ├── compat_tests.py │ ├── customisation_tests.py │ ├── decorator_tests.py │ ├── loading_tests.py │ ├── phonenumber_tests.py │ ├── prices_tests.py │ ├── slugfield_tests.py │ └── utils_tests.py │ ├── customer │ ├── __init__.py │ ├── alert_tests.py │ ├── customer_tests.py │ ├── history_tests.py │ ├── notification_tests.py │ └── test_models.py │ ├── dashboard │ ├── __init__.py │ ├── catalogue_form_tests.py │ ├── order_form_tests.py │ ├── promotions_form_tests.py │ ├── reports_form_tests.py │ └── voucher_form_tests.py │ ├── forms │ ├── __init__.py │ └── widget_tests.py │ ├── logging_tests.py │ ├── offer │ ├── __init__.py │ ├── applicator_tests.py │ ├── availability_tests.py │ ├── benefit_tests.py │ ├── condition_tests.py │ ├── custom_range_tests.py │ ├── form_tests.py │ └── results_tests.py │ ├── order │ └── processing_tests.py │ ├── partner │ ├── __init__.py │ ├── availability_mixin_tests.py │ ├── availability_tests.py │ ├── fixtures │ │ ├── books-small-semicolon.csv │ │ └── books-small.csv │ ├── import_tests.py │ ├── model_tests.py │ ├── price_tests.py │ └── tax_mixin_tests.py │ ├── payment │ ├── __init__.py │ ├── bankcard_tests.py │ ├── form_tests.py │ └── model_tests.py │ ├── promotion_tests.py │ ├── search │ ├── __init__.py │ └── munger_tests.py │ ├── settings_tests.py │ ├── shipping │ ├── __init__.py │ ├── discount_tests.py │ ├── method_tests.py │ ├── model_tests.py │ └── repository_tests.py │ ├── utils_tests.py │ ├── voucher │ ├── __init__.py │ └── model_tests.py │ └── wishlist_tests.py ├── tox.ini └── transifex.sh /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = oscar 3 | omit = *migrations* 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/images/logos/labs-ts-oscar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/logos/labs-ts-oscar.jpg -------------------------------------------------------------------------------- /docs/images/logos/oscar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/logos/oscar.png -------------------------------------------------------------------------------- /docs/images/logos/tangentlabs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/logos/tangentlabs.jpg -------------------------------------------------------------------------------- /docs/images/presentations/oscon2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/presentations/oscon2012.png -------------------------------------------------------------------------------- /docs/images/screenshots/anythinggift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/anythinggift.png -------------------------------------------------------------------------------- /docs/images/screenshots/anythinggift.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/anythinggift.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/audioapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/audioapp.png -------------------------------------------------------------------------------- /docs/images/screenshots/audioapp.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/audioapp.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/basket.png -------------------------------------------------------------------------------- /docs/images/screenshots/basket.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/basket.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/bpm.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/bpm.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/browse.png -------------------------------------------------------------------------------- /docs/images/screenshots/browse.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/browse.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/carlsberg.cch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/carlsberg.cch.png -------------------------------------------------------------------------------- /docs/images/screenshots/chiyome.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/chiyome.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/chocolatebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/chocolatebox.png -------------------------------------------------------------------------------- /docs/images/screenshots/chocolatebox.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/chocolatebox.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/colinss.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/colinss.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/dadagraphix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/dadagraphix.png -------------------------------------------------------------------------------- /docs/images/screenshots/dadagraphix.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/dadagraphix.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/dashboard.png -------------------------------------------------------------------------------- /docs/images/screenshots/dashboard.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/dashboard.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/demo.browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/demo.browse.png -------------------------------------------------------------------------------- /docs/images/screenshots/demo.browse.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/demo.browse.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/demo.home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/demo.home.png -------------------------------------------------------------------------------- /docs/images/screenshots/demo.home.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/demo.home.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/detail.png -------------------------------------------------------------------------------- /docs/images/screenshots/detail.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/detail.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/dolbeau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/dolbeau.png -------------------------------------------------------------------------------- /docs/images/screenshots/dolbeau.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/dolbeau.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/fpsport.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/fpsport.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/freetix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/freetix.png -------------------------------------------------------------------------------- /docs/images/screenshots/freetix.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/freetix.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/garmsby.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/garmsby.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/labourshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/labourshop.png -------------------------------------------------------------------------------- /docs/images/screenshots/labourshop.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/labourshop.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/laivee.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/laivee.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/landmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/landmark.png -------------------------------------------------------------------------------- /docs/images/screenshots/landmark.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/landmark.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/meridian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/meridian.png -------------------------------------------------------------------------------- /docs/images/screenshots/meridian.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/meridian.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/nailsinc.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/nailsinc.thumb.png -------------------------------------------------------------------------------- /docs/images/screenshots/oscarcommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/oscarcommerce.png -------------------------------------------------------------------------------- /docs/images/screenshots/partecipacards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/partecipacards.png -------------------------------------------------------------------------------- /docs/images/screenshots/readthedocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/readthedocs.png -------------------------------------------------------------------------------- /docs/images/screenshots/rightchoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/rightchoice.png -------------------------------------------------------------------------------- /docs/images/screenshots/sobusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/sobusa.png -------------------------------------------------------------------------------- /docs/images/screenshots/sobusa.thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/images/screenshots/sobusa.thumb.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | -e .[docs,tests] 2 | -r ../requirements.txt 3 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/howto/enforcing_stock_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/enforcing_stock_rules.rst -------------------------------------------------------------------------------- /docs/source/howto/how_to_change_a_url.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/how_to_change_a_url.rst -------------------------------------------------------------------------------- /docs/source/howto/how_to_disable_an_app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/how_to_disable_an_app.rst -------------------------------------------------------------------------------- /docs/source/howto/how_to_handle_statics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/how_to_handle_statics.rst -------------------------------------------------------------------------------- /docs/source/howto/how_to_handle_us_taxes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/how_to_handle_us_taxes.rst -------------------------------------------------------------------------------- /docs/source/howto/how_to_setup_solr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/how_to_setup_solr.rst -------------------------------------------------------------------------------- /docs/source/howto/importing_a_catalogue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/importing_a_catalogue.rst -------------------------------------------------------------------------------- /docs/source/howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/howto/index.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/internals/contributing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/internals/contributing/index.rst -------------------------------------------------------------------------------- /docs/source/internals/design-decisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/internals/design-decisions.rst -------------------------------------------------------------------------------- /docs/source/internals/getting_help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/internals/getting_help.rst -------------------------------------------------------------------------------- /docs/source/internals/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/internals/getting_started.rst -------------------------------------------------------------------------------- /docs/source/internals/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/internals/sandbox.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/address.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/analytics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/analytics.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/basket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/basket.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/catalogue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/catalogue.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/checkout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/checkout.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/customer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/customer.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/dashboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/dashboard.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/index.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/offer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/offer.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/order.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/order.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/partner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/partner.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/payment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/payment.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/promotions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/promotions.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/search.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/shipping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/shipping.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/voucher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/voucher.rst -------------------------------------------------------------------------------- /docs/source/ref/apps/wishlists.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/apps/wishlists.rst -------------------------------------------------------------------------------- /docs/source/ref/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/core.rst -------------------------------------------------------------------------------- /docs/source/ref/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/glossary.rst -------------------------------------------------------------------------------- /docs/source/ref/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/settings.rst -------------------------------------------------------------------------------- /docs/source/ref/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/signals.rst -------------------------------------------------------------------------------- /docs/source/ref/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/ref/templatetags.rst -------------------------------------------------------------------------------- /docs/source/releases/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/index.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.5.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.5.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.5.2.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.5.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.5.3.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.5.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.6.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.6.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.6.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.6.2.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.6.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.6.3.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.6.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.6.4.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.6.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.6.5.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.6.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.7.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.7.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.7.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.7.2.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.7.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.7.3.rst -------------------------------------------------------------------------------- /docs/source/releases/v0.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v0.7.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.0.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.0.2.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.0.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.1.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.2.1.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.2.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.2.2.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.2.rst -------------------------------------------------------------------------------- /docs/source/releases/v1.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/releases/v1.3.rst -------------------------------------------------------------------------------- /docs/source/topics/customisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/topics/customisation.rst -------------------------------------------------------------------------------- /docs/source/topics/deploying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/topics/deploying.rst -------------------------------------------------------------------------------- /docs/source/topics/fork_app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/topics/fork_app.rst -------------------------------------------------------------------------------- /docs/source/topics/key_questions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/topics/key_questions.rst -------------------------------------------------------------------------------- /docs/source/topics/translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/topics/translation.rst -------------------------------------------------------------------------------- /docs/source/topics/upgrading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/docs/source/topics/upgrading.rst -------------------------------------------------------------------------------- /gulpfile.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/gulpfile.js/index.js -------------------------------------------------------------------------------- /gulpfile.js/tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/gulpfile.js/tasks/default.js -------------------------------------------------------------------------------- /gulpfile.js/tasks/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/gulpfile.js/tasks/less.js -------------------------------------------------------------------------------- /gulpfile.js/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/gulpfile.js/tasks/watch.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_migrations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/requirements_migrations.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/runtests.py -------------------------------------------------------------------------------- /sandbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sandbox.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/setup.py -------------------------------------------------------------------------------- /sites/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/README.rst -------------------------------------------------------------------------------- /sites/_fixtures/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/auth.json -------------------------------------------------------------------------------- /sites/_fixtures/comms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/comms.json -------------------------------------------------------------------------------- /sites/_fixtures/offers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/offers.json -------------------------------------------------------------------------------- /sites/_fixtures/order-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/order-events.json -------------------------------------------------------------------------------- /sites/_fixtures/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/pages.json -------------------------------------------------------------------------------- /sites/_fixtures/promotions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/promotions.json -------------------------------------------------------------------------------- /sites/_fixtures/range-products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/range-products.csv -------------------------------------------------------------------------------- /sites/_fixtures/ranges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/_fixtures/ranges.json -------------------------------------------------------------------------------- /sites/sandbox/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/README.rst -------------------------------------------------------------------------------- /sites/sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/sandbox/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/sandbox/apps/gateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/sandbox/apps/gateway/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/apps/gateway/forms.py -------------------------------------------------------------------------------- /sites/sandbox/apps/gateway/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/sandbox/apps/gateway/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/apps/gateway/urls.py -------------------------------------------------------------------------------- /sites/sandbox/apps/gateway/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/apps/gateway/views.py -------------------------------------------------------------------------------- /sites/sandbox/apps/offers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/apps/offers.py -------------------------------------------------------------------------------- /sites/sandbox/apps/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/apps/sitemaps.py -------------------------------------------------------------------------------- /sites/sandbox/apps/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/sandbox/apps/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/apps/user/models.py -------------------------------------------------------------------------------- /sites/sandbox/fixtures/books.essential.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/fixtures/books.essential.csv -------------------------------------------------------------------------------- /sites/sandbox/fixtures/books.hacking.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/fixtures/books.hacking.csv -------------------------------------------------------------------------------- /sites/sandbox/fixtures/child_products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/fixtures/child_products.json -------------------------------------------------------------------------------- /sites/sandbox/fixtures/images.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/fixtures/images.tar.gz -------------------------------------------------------------------------------- /sites/sandbox/fixtures/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/fixtures/orders.json -------------------------------------------------------------------------------- /sites/sandbox/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/manage.py -------------------------------------------------------------------------------- /sites/sandbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/settings.py -------------------------------------------------------------------------------- /sites/sandbox/settings_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/settings_mysql.py -------------------------------------------------------------------------------- /sites/sandbox/settings_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/settings_postgres.py -------------------------------------------------------------------------------- /sites/sandbox/settings_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/settings_sphinx.py -------------------------------------------------------------------------------- /sites/sandbox/static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/sandbox/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /sites/sandbox/templates/gateway/email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/templates/gateway/email.txt -------------------------------------------------------------------------------- /sites/sandbox/templates/gateway/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/templates/gateway/form.html -------------------------------------------------------------------------------- /sites/sandbox/test_migrations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/test_migrations.sh -------------------------------------------------------------------------------- /sites/sandbox/update_latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/update_latest.sh -------------------------------------------------------------------------------- /sites/sandbox/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/urls.py -------------------------------------------------------------------------------- /sites/sandbox/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/uwsgi.ini -------------------------------------------------------------------------------- /sites/sandbox/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/sites/sandbox/wsgi.py -------------------------------------------------------------------------------- /src/oscar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/__init__.py -------------------------------------------------------------------------------- /src/oscar/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/app.py -------------------------------------------------------------------------------- /src/oscar/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/address/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/address/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/address/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/address/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/address/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/address/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/address/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/address/config.py -------------------------------------------------------------------------------- /src/oscar/apps/address/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/address/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/address/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/address/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/address/models.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/config.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/analytics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/models.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/receivers.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/analytics/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/analytics/scores.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/app.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/config.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/managers.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/middleware.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/basket/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/models.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/basket/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/basket/views.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/app.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/categories.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/config.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/exceptions.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/managers.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/models.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/receivers.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/app.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/config.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/managers.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/models.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/reviews/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/reviews/views.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/search_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/search_handlers.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/catalogue/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/catalogue/views.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/app.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/calculators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/calculators.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/config.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/exceptions.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/mixins.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/checkout/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/session.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/checkout/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/checkout/views.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/alerts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/customer/alerts/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/alerts/receivers.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/alerts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/alerts/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/alerts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/alerts/views.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/app.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/auth_backends.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/config.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/history.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/managers.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/customer/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/mixins.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/models.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/customer/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/receivers.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/views.py -------------------------------------------------------------------------------- /src/oscar/apps/customer/wishlists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/customer/wishlists/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/customer/wishlists/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/catalogue/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/catalogue/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/catalogue/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/catalogue/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/catalogue/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/catalogue/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/catalogue/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/catalogue/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/catalogue/tables.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/catalogue/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/catalogue/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/communications/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/menu.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/nav.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/offers/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/offers/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/offers/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/offers/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/offers/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/offers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/offers/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/orders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/orders/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/orders/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/orders/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/orders/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/orders/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/orders/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/orders/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/orders/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/pages/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/pages/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/pages/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/pages/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/pages/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/pages/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/pages/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/pages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/pages/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/partners/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/partners/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/partners/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/partners/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/partners/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/partners/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/partners/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/partners/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/promotions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/promotions/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/promotions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/promotions/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/promotions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/promotions/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/ranges/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/ranges/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/ranges/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/ranges/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/ranges/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/ranges/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/ranges/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/ranges/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/ranges/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/ranges/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/ranges/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reports/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reports/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reviews/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reviews/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reviews/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reviews/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reviews/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/reviews/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/reviews/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/shipping/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/shipping/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/shipping/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/shipping/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/shipping/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/shipping/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/shipping/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/shipping/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/tables.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/users/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/users/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/users/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/users/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/users/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/users/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/users/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/users/tables.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/users/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/views.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/vouchers/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/vouchers/app.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/vouchers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/vouchers/config.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/vouchers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/vouchers/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/dashboard/vouchers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/dashboard/vouchers/views.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/app.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/applicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/applicator.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/benefits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/benefits.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/conditions.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/config.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/custom.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/managers.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/offer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/models.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/results.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/offer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/offer/views.py -------------------------------------------------------------------------------- /src/oscar/apps/order/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/order/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/order/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/order/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/config.py -------------------------------------------------------------------------------- /src/oscar/apps/order/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/exceptions.py -------------------------------------------------------------------------------- /src/oscar/apps/order/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/order/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/models.py -------------------------------------------------------------------------------- /src/oscar/apps/order/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/processing.py -------------------------------------------------------------------------------- /src/oscar/apps/order/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/order/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/order/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/order/utils.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/availability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/availability.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/config.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/exceptions.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/importers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/importers.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/partner/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/models.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/prices.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/receivers.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/partner/strategy.py -------------------------------------------------------------------------------- /src/oscar/apps/partner/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /src/oscar/apps/payment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/bankcards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/bankcards.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/config.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/exceptions.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/payment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/payment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/payment/models.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/app.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/conf.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/config.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/layout.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/promotions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/models.py -------------------------------------------------------------------------------- /src/oscar/apps/promotions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/promotions/views.py -------------------------------------------------------------------------------- /src/oscar/apps/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/search/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/app.py -------------------------------------------------------------------------------- /src/oscar/apps/search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/config.py -------------------------------------------------------------------------------- /src/oscar/apps/search/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/context_processors.py -------------------------------------------------------------------------------- /src/oscar/apps/search/facets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/facets.py -------------------------------------------------------------------------------- /src/oscar/apps/search/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/features.py -------------------------------------------------------------------------------- /src/oscar/apps/search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/search/search_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/search_handlers.py -------------------------------------------------------------------------------- /src/oscar/apps/search/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/search_indexes.py -------------------------------------------------------------------------------- /src/oscar/apps/search/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/signals.py -------------------------------------------------------------------------------- /src/oscar/apps/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/search/views.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/config.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/methods.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/shipping/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/models.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/repository.py -------------------------------------------------------------------------------- /src/oscar/apps/shipping/scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/shipping/scales.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/config.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/voucher/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/models.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/receivers.py -------------------------------------------------------------------------------- /src/oscar/apps/voucher/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/voucher/reports.py -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/wishlists/__init__.py -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/abstract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/wishlists/abstract_models.py -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/wishlists/admin.py -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/wishlists/config.py -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/wishlists/forms.py -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/apps/wishlists/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/apps/wishlists/models.py -------------------------------------------------------------------------------- /src/oscar/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/core/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/ajax.py -------------------------------------------------------------------------------- /src/oscar/core/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/application.py -------------------------------------------------------------------------------- /src/oscar/core/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/compat.py -------------------------------------------------------------------------------- /src/oscar/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/context_processors.py -------------------------------------------------------------------------------- /src/oscar/core/customisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/customisation.py -------------------------------------------------------------------------------- /src/oscar/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/decorators.py -------------------------------------------------------------------------------- /src/oscar/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/exceptions.py -------------------------------------------------------------------------------- /src/oscar/core/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/loading.py -------------------------------------------------------------------------------- /src/oscar/core/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/logging/__init__.py -------------------------------------------------------------------------------- /src/oscar/core/logging/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/logging/formatters.py -------------------------------------------------------------------------------- /src/oscar/core/logging/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/logging/handlers.py -------------------------------------------------------------------------------- /src/oscar/core/phonenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/phonenumber.py -------------------------------------------------------------------------------- /src/oscar/core/prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/prices.py -------------------------------------------------------------------------------- /src/oscar/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/utils.py -------------------------------------------------------------------------------- /src/oscar/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/core/validators.py -------------------------------------------------------------------------------- /src/oscar/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/defaults.py -------------------------------------------------------------------------------- /src/oscar/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/forms/fields.py -------------------------------------------------------------------------------- /src/oscar/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/forms/widgets.py -------------------------------------------------------------------------------- /src/oscar/locale/am_ET/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/am_ET/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/am_ET/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/am_ET/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ar_SA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ar_SA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ar_SA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ar_SA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/bg_BG/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/bg_BG/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/bg_BG/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/bg_BG/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/bn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/bn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/bn_BD/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/bn_BD/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/bn_BD/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/bn_BD/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/cmn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/cmn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/cmn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/cmn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/cs_CZ/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/cs_CZ/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/cs_CZ/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/cs_CZ/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/el_GR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/el_GR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/el_GR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/el_GR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/en_US/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/en_US/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/en_US/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/en_US/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/es_AR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/es_AR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/es_CL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/es_CL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/es_CL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/es_CL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/et/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/fa_IR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fa_IR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/fa_IR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fa_IR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/hi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/hi_IN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/hi_IN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/hi_IN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/hi_IN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ka_GE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ka_GE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ka_GE/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ka_GE/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/nb_NO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/nb_NO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/nb_NO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/nb_NO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/pt_PT/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/pt_PT/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/pt_PT/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/pt_PT/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ro_RO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ro_RO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ro_RO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ro_RO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/ru_RU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ru_RU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/ru_RU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/ru_RU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/sk_SK/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sk_SK/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/sk_SK/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sk_SK/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/sv_SE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sv_SE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/sv_SE/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/sv_SE/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/th_TH/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/th_TH/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/th_TH/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/th_TH/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/tr_TR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/tr_TR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/tr_TR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/tr_TR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/uk_UA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/uk_UA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/uk_UA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/uk_UA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/zh_HK/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh_HK/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/zh_HK/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh_HK/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/locale/zh_TW/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh_TW/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/oscar/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/oscar/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/models/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/models/fields/__init__.py -------------------------------------------------------------------------------- /src/oscar/models/fields/autoslugfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/models/fields/autoslugfield.py -------------------------------------------------------------------------------- /src/oscar/models/fields/slugfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/models/fields/slugfield.py -------------------------------------------------------------------------------- /src/oscar/profiling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/profiling/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/profiling/decorators.py -------------------------------------------------------------------------------- /src/oscar/profiling/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/profiling/middleware.py -------------------------------------------------------------------------------- /src/oscar/static/oscar/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/README.rst -------------------------------------------------------------------------------- /src/oscar/static/oscar/css/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/css/README.rst -------------------------------------------------------------------------------- /src/oscar/static/oscar/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/css/dashboard.css -------------------------------------------------------------------------------- /src/oscar/static/oscar/css/dashboard.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/css/dashboard.css.map -------------------------------------------------------------------------------- /src/oscar/static/oscar/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/css/styles.css -------------------------------------------------------------------------------- /src/oscar/static/oscar/css/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/css/styles.css.map -------------------------------------------------------------------------------- /src/oscar/static/oscar/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/favicon.ico -------------------------------------------------------------------------------- /src/oscar/static/oscar/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/oscar/static/oscar/img/ui/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/img/ui/black.png -------------------------------------------------------------------------------- /src/oscar/static/oscar/img/ui/icon_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/img/ui/icon_minus.png -------------------------------------------------------------------------------- /src/oscar/static/oscar/img/ui/icon_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/img/ui/icon_plus.png -------------------------------------------------------------------------------- /src/oscar/static/oscar/img/ui/nav_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/img/ui/nav_sprite.png -------------------------------------------------------------------------------- /src/oscar/static/oscar/js/oscar/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/js/oscar/dashboard.js -------------------------------------------------------------------------------- /src/oscar/static/oscar/js/oscar/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/js/oscar/ui.js -------------------------------------------------------------------------------- /src/oscar/static/oscar/js/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/js/select2/select2.js -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/README.rst -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/dashboard.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/dashboard.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/alerts.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/forms.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/header.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/layout.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/mixins.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/type.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/page/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/page/wells.less -------------------------------------------------------------------------------- /src/oscar/static/oscar/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/static/oscar/less/styles.less -------------------------------------------------------------------------------- /src/oscar/templates/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/README.rst -------------------------------------------------------------------------------- /src/oscar/templates/oscar/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/403.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/404.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/500.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/README.rst -------------------------------------------------------------------------------- /src/oscar/templates/oscar/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/base.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/basket/basket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/basket/basket.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/checkout/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/checkout/nav.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/customer/alerts/form.html: -------------------------------------------------------------------------------- 1 | {% extends 'catalogue/detail.html' %} 2 | -------------------------------------------------------------------------------- /src/oscar/templates/oscar/customer/emails/commtype_registration_body.html: -------------------------------------------------------------------------------- 1 | {% load i18n %}
{% trans 'Thank you for registering.' %}
-------------------------------------------------------------------------------- /src/oscar/templates/oscar/customer/emails/commtype_registration_body.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans 'Thank you for registering.' %} -------------------------------------------------------------------------------- /src/oscar/templates/oscar/customer/emails/commtype_registration_sms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/templates/oscar/customer/emails/commtype_registration_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans 'Thank you for registering.' %} -------------------------------------------------------------------------------- /src/oscar/templates/oscar/dashboard/shipping/messages/band_updated.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 3 |{% trans "Weight band updated" %}
4 | -------------------------------------------------------------------------------- /src/oscar/templates/oscar/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/error.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/layout.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/layout_2_col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/layout_2_col.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/layout_3_col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/layout_3_col.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/offer/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/offer/detail.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/offer/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/offer/list.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/offer/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/offer/range.html -------------------------------------------------------------------------------- /src/oscar/templates/oscar/partials/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templates/oscar/partials/form.html -------------------------------------------------------------------------------- /src/oscar/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/templatetags/basket_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/basket_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/category_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/category_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/currency_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/currency_filters.py -------------------------------------------------------------------------------- /src/oscar/templatetags/dashboard_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/dashboard_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/display_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/display_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/form_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/form_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/history_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/history_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/image_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/image_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/product_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/product_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/promotion_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/promotion_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/purchase_info_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/purchase_info_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/reviews_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/reviews_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/shipping_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/shipping_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/sorting_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/sorting_tags.py -------------------------------------------------------------------------------- /src/oscar/templatetags/string_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/string_filters.py -------------------------------------------------------------------------------- /src/oscar/templatetags/wishlist_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/templatetags/wishlist_tags.py -------------------------------------------------------------------------------- /src/oscar/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/oscar/test/basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/basket.py -------------------------------------------------------------------------------- /src/oscar/test/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/contextmanagers.py -------------------------------------------------------------------------------- /src/oscar/test/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/decorators.py -------------------------------------------------------------------------------- /src/oscar/test/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/__init__.py -------------------------------------------------------------------------------- /src/oscar/test/factories/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/address.py -------------------------------------------------------------------------------- /src/oscar/test/factories/basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/basket.py -------------------------------------------------------------------------------- /src/oscar/test/factories/catalogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/catalogue.py -------------------------------------------------------------------------------- /src/oscar/test/factories/contrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/contrib.py -------------------------------------------------------------------------------- /src/oscar/test/factories/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/customer.py -------------------------------------------------------------------------------- /src/oscar/test/factories/offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/offer.py -------------------------------------------------------------------------------- /src/oscar/test/factories/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/order.py -------------------------------------------------------------------------------- /src/oscar/test/factories/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/partner.py -------------------------------------------------------------------------------- /src/oscar/test/factories/payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/payment.py -------------------------------------------------------------------------------- /src/oscar/test/factories/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/utils.py -------------------------------------------------------------------------------- /src/oscar/test/factories/voucher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/voucher.py -------------------------------------------------------------------------------- /src/oscar/test/factories/wishlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/factories/wishlists.py -------------------------------------------------------------------------------- /src/oscar/test/newfactories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/newfactories.py -------------------------------------------------------------------------------- /src/oscar/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/testcases.py -------------------------------------------------------------------------------- /src/oscar/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/test/utils.py -------------------------------------------------------------------------------- /src/oscar/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/views/__init__.py -------------------------------------------------------------------------------- /src/oscar/views/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/views/decorators.py -------------------------------------------------------------------------------- /src/oscar/views/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/src/oscar/views/generic.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/apps/customer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/customer/__init__.py -------------------------------------------------------------------------------- /tests/_site/apps/customer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/customer/config.py -------------------------------------------------------------------------------- /tests/_site/apps/customer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/apps/customer/models.py: -------------------------------------------------------------------------------- 1 | from oscar.apps.customer.models import * -------------------------------------------------------------------------------- /tests/_site/apps/customer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/customer/views.py -------------------------------------------------------------------------------- /tests/_site/apps/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/apps/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/myapp/models.py -------------------------------------------------------------------------------- /tests/_site/apps/partner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/partner/__init__.py -------------------------------------------------------------------------------- /tests/_site/apps/partner/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/partner/config.py -------------------------------------------------------------------------------- /tests/_site/apps/partner/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/apps/partner/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/partner/models.py -------------------------------------------------------------------------------- /tests/_site/apps/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/apps/shipping/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/apps/shipping/methods.py -------------------------------------------------------------------------------- /tests/_site/apps/shipping/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/import_error_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/import_error_app/catalogue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/import_error_app/catalogue/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/model_tests_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/model_tests_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/model_tests_app/models.py -------------------------------------------------------------------------------- /tests/_site/myauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/myauth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/myauth/models.py -------------------------------------------------------------------------------- /tests/_site/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/shipping/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/shipping/methods.py -------------------------------------------------------------------------------- /tests/_site/shipping/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/templates/base.html -------------------------------------------------------------------------------- /tests/_site/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/templates/layout.html -------------------------------------------------------------------------------- /tests/_site/thirdparty_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/thirdparty_package/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/thirdparty_package/apps/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_site/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/_site/urls.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/dynamic_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/dynamic_fixtures.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/basket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/basket_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/basket_tests.py -------------------------------------------------------------------------------- /tests/functional/catalogue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/catalogue/review_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/catalogue/review_tests.py -------------------------------------------------------------------------------- /tests/functional/checkout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/checkout/__init__.py -------------------------------------------------------------------------------- /tests/functional/checkout/session_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/checkout/session_tests.py -------------------------------------------------------------------------------- /tests/functional/customer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/customer/alert_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/customer/alert_tests.py -------------------------------------------------------------------------------- /tests/functional/customer/auth_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/customer/auth_tests.py -------------------------------------------------------------------------------- /tests/functional/customer/history_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/customer/history_tests.py -------------------------------------------------------------------------------- /tests/functional/customer/profile_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/customer/profile_tests.py -------------------------------------------------------------------------------- /tests/functional/customer/wishlists_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/customer/wishlists_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/dashboard/category_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/category_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/offer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/offer_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/order_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/order_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/page_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/page_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/partner_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/partner_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/product_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/product_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/range_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/range_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/reports_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/reports_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/review_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/review_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/shipping_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/shipping_tests.py -------------------------------------------------------------------------------- /tests/functional/dashboard/user_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/dashboard/user_tests.py -------------------------------------------------------------------------------- /tests/functional/offer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/offer_tests.py -------------------------------------------------------------------------------- /tests/functional/stock_alert_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/functional/stock_alert_tests.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/address/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/address/form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/address/form_tests.py -------------------------------------------------------------------------------- /tests/integration/auth_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/auth_tests.py -------------------------------------------------------------------------------- /tests/integration/basket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/basket/form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/basket/form_tests.py -------------------------------------------------------------------------------- /tests/integration/basket/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/basket/model_tests.py -------------------------------------------------------------------------------- /tests/integration/basket/view_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/basket/view_tests.py -------------------------------------------------------------------------------- /tests/integration/catalogue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/catalogue/product_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/catalogue/product_tests.py -------------------------------------------------------------------------------- /tests/integration/catalogue/reviews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/core/validator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/core/validator_tests.py -------------------------------------------------------------------------------- /tests/integration/customer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /tests/integration/dashboard/nav_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/dashboard/nav_tests.py -------------------------------------------------------------------------------- /tests/integration/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/forms/field_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/forms/field_tests.py -------------------------------------------------------------------------------- /tests/integration/migrations_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/migrations_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/offer/applicator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/applicator_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/combination_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/combination_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/condition_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/condition_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/manager_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/manager_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/range_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/range_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/reports_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/reports_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/status_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/status_tests.py -------------------------------------------------------------------------------- /tests/integration/offer/tax_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/offer/tax_tests.py -------------------------------------------------------------------------------- /tests/integration/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/order/creator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/order/creator_tests.py -------------------------------------------------------------------------------- /tests/integration/order/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/order/model_tests.py -------------------------------------------------------------------------------- /tests/integration/order/reports_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/order/reports_tests.py -------------------------------------------------------------------------------- /tests/integration/partner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/partner/strategy_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/partner/strategy_tests.py -------------------------------------------------------------------------------- /tests/integration/payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/payment/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/payment/model_tests.py -------------------------------------------------------------------------------- /tests/integration/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/shipping/scales_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/integration/shipping/scales_tests.py -------------------------------------------------------------------------------- /tests/integration/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/address/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/address/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/address/model_tests.py -------------------------------------------------------------------------------- /tests/unit/basket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/basket/middleware_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/basket/middleware_tests.py -------------------------------------------------------------------------------- /tests/unit/basket/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/basket/model_tests.py -------------------------------------------------------------------------------- /tests/unit/basket/report_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/basket/report_tests.py -------------------------------------------------------------------------------- /tests/unit/catalogue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/catalogue/__init__.py -------------------------------------------------------------------------------- /tests/unit/catalogue/reviews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/catalogue/reviews/form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/catalogue/reviews/form_tests.py -------------------------------------------------------------------------------- /tests/unit/catalogue/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/catalogue/test_attributes.py -------------------------------------------------------------------------------- /tests/unit/catalogue/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/catalogue/test_models.py -------------------------------------------------------------------------------- /tests/unit/checkout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/checkout/calculator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/checkout/calculator_tests.py -------------------------------------------------------------------------------- /tests/unit/checkout/forms_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/checkout/forms_tests.py -------------------------------------------------------------------------------- /tests/unit/checkout/mixins_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/checkout/mixins_tests.py -------------------------------------------------------------------------------- /tests/unit/checkout/session_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/checkout/session_tests.py -------------------------------------------------------------------------------- /tests/unit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/core/autoslugfield_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/autoslugfield_tests.py -------------------------------------------------------------------------------- /tests/unit/core/compat_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/compat_tests.py -------------------------------------------------------------------------------- /tests/unit/core/customisation_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/customisation_tests.py -------------------------------------------------------------------------------- /tests/unit/core/decorator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/decorator_tests.py -------------------------------------------------------------------------------- /tests/unit/core/loading_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/loading_tests.py -------------------------------------------------------------------------------- /tests/unit/core/phonenumber_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/phonenumber_tests.py -------------------------------------------------------------------------------- /tests/unit/core/prices_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/prices_tests.py -------------------------------------------------------------------------------- /tests/unit/core/slugfield_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/slugfield_tests.py -------------------------------------------------------------------------------- /tests/unit/core/utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/core/utils_tests.py -------------------------------------------------------------------------------- /tests/unit/customer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/customer/alert_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/customer/alert_tests.py -------------------------------------------------------------------------------- /tests/unit/customer/customer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/customer/customer_tests.py -------------------------------------------------------------------------------- /tests/unit/customer/history_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/customer/history_tests.py -------------------------------------------------------------------------------- /tests/unit/customer/notification_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/customer/notification_tests.py -------------------------------------------------------------------------------- /tests/unit/customer/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/customer/test_models.py -------------------------------------------------------------------------------- /tests/unit/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/dashboard/catalogue_form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/dashboard/catalogue_form_tests.py -------------------------------------------------------------------------------- /tests/unit/dashboard/order_form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/dashboard/order_form_tests.py -------------------------------------------------------------------------------- /tests/unit/dashboard/reports_form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/dashboard/reports_form_tests.py -------------------------------------------------------------------------------- /tests/unit/dashboard/voucher_form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/dashboard/voucher_form_tests.py -------------------------------------------------------------------------------- /tests/unit/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/forms/widget_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/forms/widget_tests.py -------------------------------------------------------------------------------- /tests/unit/logging_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/logging_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/offer/applicator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/applicator_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/availability_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/availability_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/benefit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/benefit_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/condition_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/condition_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/custom_range_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/custom_range_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/form_tests.py -------------------------------------------------------------------------------- /tests/unit/offer/results_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/offer/results_tests.py -------------------------------------------------------------------------------- /tests/unit/order/processing_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/order/processing_tests.py -------------------------------------------------------------------------------- /tests/unit/partner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/partner/availability_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/partner/availability_tests.py -------------------------------------------------------------------------------- /tests/unit/partner/fixtures/books-small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/partner/fixtures/books-small.csv -------------------------------------------------------------------------------- /tests/unit/partner/import_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/partner/import_tests.py -------------------------------------------------------------------------------- /tests/unit/partner/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/partner/model_tests.py -------------------------------------------------------------------------------- /tests/unit/partner/price_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/partner/price_tests.py -------------------------------------------------------------------------------- /tests/unit/partner/tax_mixin_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/partner/tax_mixin_tests.py -------------------------------------------------------------------------------- /tests/unit/payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/payment/bankcard_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/payment/bankcard_tests.py -------------------------------------------------------------------------------- /tests/unit/payment/form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/payment/form_tests.py -------------------------------------------------------------------------------- /tests/unit/payment/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/payment/model_tests.py -------------------------------------------------------------------------------- /tests/unit/promotion_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/promotion_tests.py -------------------------------------------------------------------------------- /tests/unit/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/search/munger_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/search/munger_tests.py -------------------------------------------------------------------------------- /tests/unit/settings_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/settings_tests.py -------------------------------------------------------------------------------- /tests/unit/shipping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/shipping/discount_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/shipping/discount_tests.py -------------------------------------------------------------------------------- /tests/unit/shipping/method_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/shipping/method_tests.py -------------------------------------------------------------------------------- /tests/unit/shipping/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/shipping/model_tests.py -------------------------------------------------------------------------------- /tests/unit/shipping/repository_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/shipping/repository_tests.py -------------------------------------------------------------------------------- /tests/unit/utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/utils_tests.py -------------------------------------------------------------------------------- /tests/unit/voucher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/voucher/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/voucher/model_tests.py -------------------------------------------------------------------------------- /tests/unit/wishlist_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tests/unit/wishlist_tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/tox.ini -------------------------------------------------------------------------------- /transifex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangentlabs/django-oscar/HEAD/transifex.sh --------------------------------------------------------------------------------