gpt4 book ai didi

Django模板: include template passing translated variable

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

我需要通过Django include标签将以下内容传递到包含的模板中:

{% include 'btn.html' with
btn_text='Hi '|add:first_name|add:' - Verify Email Now'
btn_url=verify_url
%}

因此,我可以将整个问题分为两个部分:

A.是否可以在模板级别以另一种更优雅的方式将 first_name添加到字符串中?

B.我需要在模板级别转换字符串-可以吗?

IE。我打算做的事情(但 在语法上不是是正确的)如下:
{% include 'btn.html' with
btn_text=
{% blocktrans first_name as first_name %}
Hi {{first_name}} - Verify Email Now
{% endblocktrans %}
btn_url=verify_url
%}

最佳答案

我在post中找到了解决方案:

这是给定的示例:

{% trans "Load more promotions" as promotions %}
{% include "a_dir/stuff.html" with text=promotions %}

关于Django模板: include template passing translated variable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20288774/

25 4 0