Hi Rafalp,
Instead of using Misago's index page i'm using my own. So far I've done that by adding my template to Misago base like this:
<div id="misago-container">
{% include "misago/jumbotron.html" %}
{% include "misago/navbar.html" %}
{% if "/" == request.path %}
{% include "my index page.html" %}
{% endif %}
This has worked just fine up until this point, cause now I need to use context processors in the view, to make the index page dynamic. This works well on my other pages which are seperated from Misago, but as Misago "controls" the index page, i'm not really sure at which angle I should approach this.
Should I work on seperating Misago from the index page, or add my context processors to Misago's view? In case of the last approach, is it possible to add custom views to Misago, without forking, and which views are the relevant one?