(self)
| 28 | |
| 29 | @property |
| 30 | def app_dirname(self): |
| 31 | raise ImproperlyConfigured( |
| 32 | "{} doesn't support loading templates from installed " |
| 33 | "applications.".format(self.__class__.__name__) |
| 34 | ) |
| 35 | |
| 36 | def from_string(self, template_code): |
| 37 | """ |
nothing calls this directly
no test coverage detected