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
2022-06-30 07:28:09 +01:00

12 lines
276 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)
def get_custom_ip(request):
return "123.123.123.123"