标签: django django-templates
我的基本django问题仍在继续。
如果我有三个字符串变量并想测试其中一个,“fullname”相当于另外两个连接,“first”和一个空格然后“last”,我将如何在django模板的上下文?
答案 0 :(得分:1)
你可以写一个custom template tag,它可能会提供这样的东西:
{% test_name_equality "Dagobert Duck" "Dagobert" "Duck" %}
在模板中你可以使用非常普通的python字符串处理。