(self, template_name, **context)
| 101 | return short_id |
| 102 | |
| 103 | def render_template(self, template_name, **context): |
| 104 | t = self.jinja_env.get_template(template_name) |
| 105 | return Response(t.render(context), mimetype="text/html") |
| 106 | |
| 107 | def dispatch_request(self, request): |
| 108 | adapter = self.url_map.bind_to_environ(request.environ) |
no test coverage detected