Djangoのテンプレートエンジン/言語を使ってHTMLをコンパイルするアプリケーションを構築しています。しかし、アプリはDjangoで動作せず、すべての設定やものがありません。 私はそれを使用しようとすると、私は次のエラーを取得する:残りのDjangoテンプレートエンジンを使用しない
Traceback (most recent call last):
File "Send.py", line 33, in <module>
template = loader.get_template("email.html")
File "/Library/Python/2.7/site-packages/django/template/loader.py", line 157, in get_template
template, origin = find_template(template_name)
File "/Library/Python/2.7/site-packages/django/template/loader.py", line 138, in find_template
raise TemplateDoesNotExist(name)
django.template.base.TemplateDoesNotExist: email.html
私が使用していたコードは以下の通りです:
from django.template import loader, Context
from django.conf import settings
template = loader.get_template("email.html")
rendered = template.render(data)
テンプレートは、Pythonのファイルと同じディレクトリにあります。
可能です[複製](http://stackoverflow.com/questions/98135/how-do-i-use-django-templates-without-the-rest-of-django) – reclosedev
ここでは、Django > = 1.8 http://stackoverflow.com/a/34494931/817277 – Pramod