Reputation: 1066
I am using django-oscar == 1.6.1 for a project. I am trying to add recommended products to an individual product in the dashboard, currently I see that the recommended product field is empty, how do I populate it and give the ranking?
Upvotes: 0
Views: 549
Reputation: 13372
It's a streaming search field, whatever you type should search for related term in your existing products database.
For example, if you type <search_term>
it would ultimately query (after several intermediate queries of substrings) & hit http://localhost:8000/dashboard/catalogue/product-lookup/?q=<search_term>
, the view for which can be found here. As you can see, it searches the product titles only, if you need something else, you can always modify it.
By the looks of it, you haven't populated your products database yet, or there's something else wrong with your installation or setup.
Upvotes: 2