1
0
Fork 0
mirror of synced 2024-06-21 11:50:17 +12:00

refactor: Remove setup_django from html.py

This commit is contained in:
Cristian 2020-12-11 17:49:16 -05:00
parent ce53b0220c
commit 57d1a3d4e5

View file

@ -23,7 +23,6 @@ from ..config import (
GIT_SHA,
FOOTER_INFO,
HTML_INDEX_FILENAME,
setup_django,
)
MAIN_INDEX_TEMPLATE = 'main_index.html'
@ -111,7 +110,6 @@ def render_django_template(template: str, context: Mapping[str, str]) -> str:
"""render a given html template string with the given template content"""
from django.template.loader import render_to_string
setup_django(check_db=False)
return render_to_string(template, context)