This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Description
With a tree structure as such:
views -> tracker -> config_items
This dependency:
<%= render 'some_view' %>
Gets calculated as 'tracker/some_view' insead of 'tracker/config_items/some_view'
Explicitly setting the path in the render call as such:
<%= render '/tracker/config_items/some_view' %>
Works correctly.