21 lines
505 B
Python
21 lines
505 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
werkzeug.debug.utils
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Various other utilities.
|
|
|
|
:copyright: (c) 2010 by the Werkzeug Team, see AUTHORS for more details.
|
|
:license: BSD.
|
|
"""
|
|
from os.path import join, dirname
|
|
from werkzeug.templates import Template
|
|
|
|
|
|
def get_template(filename):
|
|
return Template.from_file(join(dirname(__file__), 'templates', filename))
|
|
|
|
|
|
def render_template(template_filename, **context):
|
|
return get_template(template_filename).render(**context)
|