如何覆盖 django postman 的电子邮件模板?
How do I override the email template for django postman?
我正在尝试覆盖 django-postman 通知系统的默认电子邮件。在 docs 中,它表示
Default templates are provided with the application. Same as for the
views, you can override them, and design yours.
但是在代码中,它们是直接从 postman
文件夹中使用的,例如'postman/email_user_subject.txt'
.
如何覆盖电子邮件通知模板?
在您项目的模板目录中,创建一个名为 postman
的文件夹并将您的模板放在那里。它们的名称必须与您覆盖的名称相同。无论你在那里有什么都会覆盖默认值。在默认为应用程序的模板之前,Django 首先在您的自定义模板文件夹中查找。
我正在尝试覆盖 django-postman 通知系统的默认电子邮件。在 docs 中,它表示
Default templates are provided with the application. Same as for the views, you can override them, and design yours.
但是在代码中,它们是直接从 postman
文件夹中使用的,例如'postman/email_user_subject.txt'
.
如何覆盖电子邮件通知模板?
在您项目的模板目录中,创建一个名为 postman
的文件夹并将您的模板放在那里。它们的名称必须与您覆盖的名称相同。无论你在那里有什么都会覆盖默认值。在默认为应用程序的模板之前,Django 首先在您的自定义模板文件夹中查找。