We made the decision quite awhile ago to use Mako Templates in our Django project. We're also supporting Django Templates, since a lot of reusable apps (obviously) assume that Django Templating is available. I've found it possible to render Django Templates from Mako, but I haven't been able to find a way to make it work the other way around.
I've just added django-articles to our list of apps, and it uses Django Templating. It assumes that the base.html file is an overriden Django Template. Unfortunately, our main site is built using Mako. I can't yet figure out a clean way for Django Templates to host themselves within Mako.
What I think I want, is a template tag that will call out to Mako and request to be 'embedded'.
Our Mako templates all currently do the following:
<%inherit file="mako/base.html"/>
What I want is to be able to do something like this from a Django Template:
{% render_in_mako 'mako/base.html' 'body' %}
With the following in `mako/base.html':
</head>
<body>
<%include file="header.html" />
${next.body()}
</body>
</html>
Has anyone had to do this before? I'm not very familiar with writing template tags. Do you think this can be done? The alternative is probably going to be re-writing all the templates in Mako, and that doesn't appeal to me at all. A template tag would be incredibly useful to a lot of projects that are using Mako I think.