Our Django site is built using Mako templates. We want to use a third party project called django-socialregistration, but its template tags use Django\'s templates. If we us
I've hardly used Mako, but if you can include arbitrary Python code, you could always inline the template rendering function there.
<%
tpl = """{% load facebook_tags %}{% facebook_button %}{% facebook_js %}"""
from django.template import Template, Context
t = Template(tpl)
t.render(Context())
%>