Re: [mezzanine-users] SiteRelated Products and Categories

2015-05-30 Thread Stephen McDonald
They're already SiteRelated - >>> import inspect >>> inspect.getmro(Product) (, , , , , , , , , , ) >>> inspect.getmro(Category) (, , , , , , , , , , , ) If they're not acting as such, you may have misconfigured your Site records On Sat, May 30, 2015 at 8:14 AM, Andrew Fam wrote: > Trying to b

[mezzanine-users] SiteRelated Products and Categories

2015-05-30 Thread Andrew Fam
Trying to build a multitenanted ecommerce platform. Any idea how to add SiteRelated to the Product and Category? I tried the following below but the migrations don't register from django.db import models from cartridge.shop.models import Product from cartridge.shop.models import Category from me