mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
12 lines
399 B
Python
12 lines
399 B
Python
|
|
||
|
from django.template.backends.jinja2 import Jinja2
|
||
|
|
||
|
class TeXEngine(Jinja2):
|
||
|
app_dirname = 'templates'
|
||
|
|
||
|
def __init__(self, params):
|
||
|
default_environment = 'django_tex.environment.environment'
|
||
|
if 'environment' not in params['OPTIONS'] or not params['OPTIONS']['environment']:
|
||
|
params['OPTIONS']['environment'] = default_environment
|
||
|
super().__init__(params)
|