you cant use this code
• view_config(
• context=News,
• permission=ptah.cms.View,
• wrapper=ptah.wrap_layout(),
• renderer='ptah_minicms:templates/news.pt')(ptah.View)
you actually create venusian action for ptah.View class and Configurator.scan() cant find it.
this code should work:
@view_config(context=News, ...)
class newsView(ptah.View):
...