Load and generate a template.
(template_name, **context)
| 41 | |
| 42 | |
| 43 | def generate_template(template_name, **context): |
| 44 | """Load and generate a template.""" |
| 45 | context.update(href=href, format_datetime=format_datetime) |
| 46 | return template_loader.load(template_name).generate(**context) |
| 47 | |
| 48 | |
| 49 | def parse_creole(markup): |
no test coverage detected