gpt4 book ai didi

Django 多模板继承

转载 作者:行者123 更新时间:2023-12-02 04:53:28 25 4
gpt4 key购买 nike

我的情况很简单:

  • 我有一个文本/普通邮件模板:body.txt
  • 另一个用于文本/html 邮件的邮件:body.html

这两封邮件的内容是相同的,因为我使用 EmailAlternative 在同一封邮件中发送这两封邮件。

body.txt:

{% block message %}{% endblock %}

{{ site_name }} team
-----------------
If you need help contact use at {{ support_mail }}

body.html:

<html>
<head>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<p>{% filter linebreaksbr %}{% block message %}{% endblock %}{% endfilter %}</p>
<p><strong>{{ site_name }} team</strong></p>
<hr/>
If you need help contact use at <a href="mailto:{{ support_mail }}">{{ support_mail }}</a>
</body>
</html>

当然,翻译、CSS 和多个 block 会稍微复杂一些。

我的愿望是定义invitation.txt:

{% block message %}Dear {{ first_name|title }} {{ last_name|upper }},

Your inscription has bee accepted. Welcome!
{% endblock %}

我希望能够加载(body.txt,invitation.txt)和(body.html,invitation.txt)来获取我的两个html部分。

编辑:

类似的事情:

邀请/body.txt:

{% extends body.txt invitation.txt %}

invitation/body.html:

{% extends body.html invitation.txt %}

最佳答案

您可以使用include

例如:邀请.txt:

Dear {{ first_name|title }} {{ last_name|upper }},

Your inscription has bee accepted. Welcome!

邀请/body.txt:

{% extends body.txt %}
{% block message %}
{% include "invitation.txt" %}
{% endblock %}

invitation/body.html:

{% extends body.html %}
{% block message %}
{% include "invitation.txt" %}
{% endblock %}

关于Django 多模板继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14523683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com