Re: [mezzanine-users] Custom templates within an app without using a custom Page

2016-05-18 Thread Eduardo Rivas
Just for the record, I just tried the method described in the docs, and it works. Here's my page structure: - Parent page (Rich Text page, slug = /parent/) - Child 1 (Form, slug = /parent/child-1/) - Child 2 (Rich Text page, slug = /parent/child-2/) I have created custom templa

[mezzanine-users] Product_db command issue: Possible duplication due to variation usg ProductVariation.objects.create

2016-05-18 Thread Sathish Anton
Product_db command issue: Possible duplication due to just "objects.create" rather than "objects.get_or_create": variation = ProductVariation.objects.*create*( # strip whitespace sku=row[SKU].replace(" ", ""), product=product, ) Where