Questions tagged [django-oscar]

Oscar is an e-commerce framework for Django designed for building domain-driven applications. It is structured so that the core business objects can be customised to suit the domain at hand. In this way, your application can accurately model its domain, making feature development and maintenance much easier

Oscar is an e-commerce framework for Django designed for building domain-driven sites. It is structured such that any part of the core functionality can be customised to suit the needs of your project. This allows a wide range of e-commerce requirements to be handled, from large-scale B2C sites to complex B2B sites rich in domain-specific business logic.

416 questions
4
votes
1 answer

How do I extend the django oscar customer models fields?

How do I extend the django-oscar customer models fields? I have extended the registration form to include more fields, in apps/customer/forms.py class EmailUserCreationForm(forms.ModelForm): email = forms.EmailField(label=_('Email address')) …
Tui Popenoe
  • 2,098
  • 2
  • 23
  • 44
4
votes
2 answers

RuntimeError: Conflicting 'product_product_options' models in application 'catalogue'

Version Info: Python 3.4, Django 1.8, Oscar Commerce - VERSION = (1, 2, 1, 'final') I am trying to customize Products in the catalogue app following the documentation. Having forked the catalogue app, I have defined models.py as follows: from…
bhaskarc
  • 9,269
  • 10
  • 65
  • 86
4
votes
1 answer

pay on arrival in Django Oscar?

So I customized Django-oscar, everything works fine until the payment step Enter payment details This page needs implementing within your project. You may want to use one of Oscar's payment gateway…
est
  • 11,429
  • 14
  • 70
  • 118
4
votes
1 answer

Django-Oscar with AWS S3 save images correctly

I'm using django-oscar with S3 storage from the storages S3BotoStorage library. My static files are stored in my s3 bucket at: STATIC_URL = "https://s3.amazonaws.com//static/" These are successfully collected when I run python…
Tui Popenoe
  • 2,098
  • 2
  • 23
  • 44
4
votes
1 answer

Store Credit / Virtual Currency app for Django Oscar?

I want to have a store credit model for customers where the virtual currency is stored. This store credit app will store points(added on return or some scheme) that can be used to pay for products. Is django-oscar-accounts the right app for that ?…
Coderaemon
  • 3,619
  • 6
  • 27
  • 50
4
votes
1 answer

django-oscar registration error: Socket error 10061 - Connection refused

I am following the instruction here: http://django-oscar.readthedocs.org/en/latest/internals/getting_started.html When i was trying to register @ http://127.0.0.1:8000/accounts/login/, i got this error: Environment: Django Version: 1.8.3 Python…
sunshine
  • 41
  • 4
4
votes
2 answers

Django TemplateTags not compiling

I am trying to create custom django templatetags for my project. I followed the guides available and created the tags. But the tags are not being picked up. They aren't even being compiled (as the .pyc file isn't generated). The structure is…
Gaurav Wadhwani
  • 1,352
  • 2
  • 15
  • 32
4
votes
2 answers

Adding products in django-oscar homepage

I'm trying to figure out the best way to display products inside my homepage. I'm building my website using the sandbox that already comes with django-oscar (I cloned the project from Github). I discovered that the default homepage is controlled by…
Alexandre Lara
  • 2,464
  • 1
  • 28
  • 35
4
votes
1 answer

Django-Oscar Images Error

I am using Django-Oscar in Mac (mavericks). and everything looks fine but, it doesnt show any image that are correctly uploaded. in the beginning i thought that was a addressing problem but it save the pictures in the right folder. so that is not…
oskreyes
  • 67
  • 1
  • 5
4
votes
1 answer

Module "oscar.apps.customer.auth_backends" does not define a "EmailBackend" attribute/class

I am trying to start a project based on django-oscar from scratch and stacking with problem ImproperlyConfigured at / Module "oscar.apps.customer.auth_backends" does not define a "EmailBackend" attribute/class My…
wadadaaa
  • 309
  • 1
  • 4
  • 21
3
votes
1 answer

Django Oscar Image saved in cache folder but not showing

Could anyone point me the direction to solve the image not displaying properly, since the image was saved in cache folder with 500 error. I am not sure if it is to due to permission or something deeper? This is what I had configure but not sure if I…
3
votes
4 answers

ModuleNotFoundError: No module named 'sorl'

I'm getting following error during installing django-oscar from https://django-oscar.readthedocs.io/en/2.0.4/internals/getting_started.html settings.py INSTALLED_APPS =…
Pratik Sharma
  • 165
  • 2
  • 9
3
votes
2 answers

How to add a new view to django-oscar

I don't think I fully grasp the django-oscar documentation. I am trying to add a new view, a home view at / of the site. But whatever I seem to do it keeps going to /catalogue/ when I want to access / instead. it says I should do the following: from…
3
votes
1 answer

Django-oscar : how to change the URL from root APP?

I'm developing an ecommerce website using django-oscar 2.0.1. I would like to change the url to access catalogue (as described here in the documentation), but I always get this error : **NoReverseMatch at / 'customer' is not a registered…
Mairkur
  • 177
  • 1
  • 15
3
votes
2 answers

How to programatically add product images in django oscar?

I am currently programatically importing products into my product catalog, however, I am having difficulty uploading images for each product. Here's what my code looks like: # frobshop/custom_utils/product_importer.py from…
B B
  • 1,116
  • 2
  • 8
  • 20
1 2
3
27 28