I have
- Add-on product defining a view ("my_view")
- Application using this addon
Both application views.py
are scanned by configurator during the application startup.
My application needs to have a more specific version of my_view
, as addon provided generic my_view
doesn't know about application specific details. What would be a good Pyramid pattern do this, so that Pyramid Configurator doesn't have a conflict? Can I register a view with the same name and context more specific IRequest
or something along the lines?