Hi Michael.

You're passing a variable called blog.blogpost to Mezzanine, which doesn't exist in the Python scope.

1. You have to add quotes around the model name to treat it as a string, not a variable: "blog.blogpost" 2. You need to add a comma after the name so the parentheses is treated as a list: ("blog.blogpost",)
3. Model names are CamelCased: ("blog.BlogPost",)

The setting should look like:

OWNABLE_MODELS_ALL_EDITABLE = ("blog.BlogPost",)

--
You received this message because you are subscribed to the Google Groups "Mezzanine 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to