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
20
votes
2 answers

Create a canonical "parent" product in Django Oscar programmatically

I'm trying to use a modified version of the django-oscar import_oscar_catalogue class to import a bunch of products from a CSV, and on the first encounter of a product (defined by title), create a canonical parent product, and then for all future…
Tui Popenoe
  • 2,098
  • 2
  • 23
  • 44
20
votes
2 answers

'staticfiles' is not a valid tag library: Template library staticfiles not found

I am trying django-oscar tutorial from http://django-oscar.readthedocs.org/en/latest/internals/getting_started.html , but I am getting a 'staticfiles' is not a valid tag library: Template library staticfiles not found, tried…
psychok7
  • 5,373
  • 9
  • 63
  • 101
18
votes
5 answers

PyCharm - Unresolved library 'staticfiles'

I'm working on a Django project with PyCharm. Unfortunately PyCharm does not resolve the template tags I would like to use in my templates. {% load staticfiles %} The project is running within an Ubuntu VM via vagrant. The run configuration knows…
RodrigoDela
  • 1,706
  • 12
  • 26
15
votes
2 answers

Displaying Django subcategories in category and products in each category json as Json Child

Hi in my Django oscar project which Implements Django oscar. I am able to implement my custom API which I use to view categories and display them. The issue with the API now is that subcategories of a category appear in my API view as categories and…
King
  • 1,885
  • 3
  • 27
  • 84
15
votes
2 answers

Integrating a payment gateway with Django-Oscar?

I want to integrate a payment gateway with oscar. I have integrated oscar-paypal it works fine. Should I follow oscar-paypal and try to emulate it ? This document doesn't gives the starting information but not exactly ? I need this. To create…
Coderaemon
  • 3,619
  • 6
  • 27
  • 50
12
votes
1 answer

from django.contrib.gis.geos import GEOSException, GEOSGeometry, fromstr ImportError: cannot import name GEOSException

I am working on django-oscar project to create custom eCommerce application. When i run my project using python manage.py runserver command, I got this error " from django.contrib.gis.geos import GEOSException, GEOSGeometry, fromstr …
rajan patel
  • 121
  • 1
  • 4
9
votes
2 answers

django oscar and djangocms

I am interested in combining django-cms for content management and django oscar for e-commerce. Can someone give me some direction, preferably someone that has already successfully combined the two: [A] Should the structure be a base oscar site,…
Nicholas Hamilton
  • 10,044
  • 6
  • 57
  • 88
9
votes
2 answers

Automatically setup Apache Solr with Django - Oscar on AWS Elastic Beanstalk

I need to ensure that Apache Solr is installed with my django-oscar application, and have been using these instructions with an .ebextensions config file to automatically install Solr and rebuild the index. Here is the…
Tui Popenoe
  • 2,098
  • 2
  • 23
  • 44
8
votes
2 answers

no such column: django_content_type.name

I had django-oscar's sample app sandbox deployed on my website at example.com . i wanted to move that to example.com:8000 and run another project at example.com url. I successfully did the second part, and when you enter example.com, you can see the…
Ashkan Kazemi
  • 1,077
  • 8
  • 26
7
votes
2 answers

How to integrate Stripe payments gateway with Django Oscar?

I am trying to integrate the Stripe payment gateway to Django oscar for an e-commerce site which sells physical goods like groceries online.I use python 3.6.3, Django 2.0, Django-oscar 1.6, stripe 1.82.2. Method 1: So I followed this link in…
Sammy J
  • 1,048
  • 10
  • 28
7
votes
1 answer

OSCAR_SEARCH_FACETS for filtering product lists

I am working on an ecommerce website using django oscar. Products are listed and I have to apply filters (e.g. year, price, etc.). Can we use oscar facet for this filtering functionality? I have tried adding following as per oscar documentation,…
Kishan Mehta
  • 2,598
  • 5
  • 39
  • 61
6
votes
1 answer

How to add additional field to django oscar product field in dashboard

How do I add an additional field to django-oscar dashboard? I've forked catalog app added an extra field, but the form is not showing after forking dashboard. from django.db import models from oscar.apps.catalogue.abstract_models import…
Martins
  • 1,130
  • 10
  • 26
6
votes
3 answers

Integrating a redirection-included method of payment in django-oscar

I am developing a shopping website using django-oscar framework, in fact I am using their sandbox site. I want to add payment to the checkout process, but the thing is, I am totally confused! I've read this link : "Oscar's payment integration…
Ashkan Kazemi
  • 1,077
  • 8
  • 26
6
votes
5 answers

Django Oscar: Nothing showing up at URL "http://localhost:8000/buy/"

I wanted to include an ecommerce portal on my website and I have done everything as given on the "Create your Shop page" as given in Django-Oscar documentation, just that in urls.py instead of url(r'', include(application.urls)), I have…
ofnowhere
  • 1,114
  • 2
  • 16
  • 40
5
votes
2 answers

Processing Payments Via Paypal in Django-Oscar

I am trying to set up a basic e-commerce site using Django Oscar and am having difficulties. The majority of the problem has to do with the absence of examples of how to hook up meaningful (think Paypal, Stripe, Braintree) methods of payment and…
MadPhysicist
  • 5,401
  • 11
  • 42
  • 107
1
2 3
27 28