Return a compiled Template object for the given template code, handling template inheritance recursively.
(self, template_code)
| 163 | raise TemplateDoesNotExist(name, tried=tried) |
| 164 | |
| 165 | def from_string(self, template_code): |
| 166 | """ |
| 167 | Return a compiled Template object for the given template code, |
| 168 | handling template inheritance recursively. |
| 169 | """ |
| 170 | return Template(template_code, engine=self) |
| 171 | |
| 172 | def get_template(self, template_name): |
| 173 | """ |