I'm implementing a store in satchmo. I've created a custom product MyProduct by using model inheritance from the Product Model (as seen in http://thisismedium.com/tech/satchmo-diaries-part-one/).
Now I'd like to have a custom product detail template for MyProduct, and only MyProduct. I tried creating a template in
/project/templates/product/product.html
But that overrides the template for ALL products in the store, not just MyProduct. I also tried:
/project/templates/product/detail_myproduct.html
/project/templates/product/myproduct.html
But none of those seemed to work either.