argh, template render errors, catch

This commit is contained in:
Sanj 2011-09-10 08:18:25 +05:30
parent a691694a62
commit ce8cedfdee

View File

@ -82,9 +82,8 @@ class ItfModel(models.Model):
def insidepage_dict(self):
if not exists(self.get_template_path()):
return {
'html': "Template for this model not found."
}
html = "Template not found."
else:
try:
html = render_to_string(self.get_template_path(), self.info_dict())
except: