7
This repository has been archived on 2023-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavemanon-wagtail-personali…/tests/utils.py
Michael van Tellingen e6fac5f7fb Fix templatetag tests
2017-05-31 17:19:24 +02:00

8 lines
217 B
Python

from django.template import engines
def render_template(value, **context):
template = engines['django'].from_string(value)
request = context.pop('request', None)
return template.render(context, request)