I'm curious as to how people organise their shared partials in this specific case. In my application, an index of listings can be displayed at either /listings or /users/:id/listings urls. Essentially either seeing all listings or my listings.
Both of the associated views /app/views/listings/index.html.haml and /app/views/users/listing/index.html.haml currently share a partial that does the bulk of the rendering. Really everything but the title, heading, a back link, and some text if there are no listings.
Where would you locate this partial. I'm torn between keeping it close to the main listing resource and also noting that it is shared a bit more widely...