Hello,
I have a "core" CMS-like home made package which I'd like to modularize it a bit to be reusable.
I wondered what would be the "cleanest" approach regarding the templates and the @view_config decorators?
At the moment I have a couple of @view_config(..., renderer='blabla:templates/
foo.pt') and I'd like to put the templates in a dedicated packages and config.include() them
I was thinking of a renderer="%{default}:/
foo.pt" witjh a view deriver which check the presence of "%{default}" and replace it...
Any comment ? :)
Thanks!
Julien