Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django Oscar. How to add product?

I'm a beginner in Python and Django. I have installed django-oscar. Then I Configured it and started the server, it works.

Now, I don't understand how to add a product?

At the dashboard there is a button Create new product. But in order to add new product it asks to select product class and I can not find any product class in the given dropdown options.

Provide me a demo example of how to add product in django-oscar.

like image 524
Alex Nechaev Avatar asked Apr 06 '13 20:04

Alex Nechaev


1 Answers

You need to be logged in as a superuser and go to the store/dashboard URL DO NOT ADMINISTER THIS FROM THE NORMAL DJANGO ADMIN CONSOLE (even though that answer was accepted?)

Here is an example of what this looks like in the included sandbox app enter image description here

You need to add a category, product type, and partner and only then can you begin adding real products

like image 169
D2TheC Avatar answered Oct 30 '22 20:10

D2TheC