Simplified TemplateDetailView with pathlib.Path.read_text().
This commit is contained in:
parent
f97a6123c0
commit
62254c5202
|
@ -330,8 +330,7 @@ class TemplateDetailView(BaseAdminDocsView):
|
||||||
for index, directory in enumerate(default_engine.dirs):
|
for index, directory in enumerate(default_engine.dirs):
|
||||||
template_file = Path(directory) / template
|
template_file = Path(directory) / template
|
||||||
if template_file.exists():
|
if template_file.exists():
|
||||||
with template_file.open() as f:
|
template_contents = template_file.read_text()
|
||||||
template_contents = f.read()
|
|
||||||
else:
|
else:
|
||||||
template_contents = ''
|
template_contents = ''
|
||||||
templates.append({
|
templates.append({
|
||||||
|
|
Loading…
Reference in New Issue