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 Yick b8d7dd53ae Support Wagtail 4.2 (#1)
Co-authored-by: nick.moreton <nick.moreton@torchbox.com>
Co-authored-by: Nick Moreton <nick.moreton@torchbox.com>
Reviewed-on: #1
2023-05-07 03:25:48 +00: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"