App_1 has a view and a template for this view. It would like to "aggregate" information into this view from other sources (i.e. other apps), without having to add or change anything itself. Perhaps App_2 wants to put "hello world" into this designated area in App_1's view. What is the best way of achieving this?
Signals come to mind naturally. But what should signal receivers send back? In my mind, App_1 template includes a custom tag that sends a signal and receives a list of templates (e.g. 'app_2/template.html') back, and it will register each one. However, it seems like inclusion_tag only supports 1 template rendering for each tag.
What recourse do I have?