【发布时间】:2011-12-14 07:32:03
【问题描述】:
我在 django 站点中有一个表单
<form method="POST" action="." class="right_custom">{% csrf_token %}
<br>{% trans "Enter the discount coupon code if you have any" %}</br>
<input type="text" name="coupon_code" size="25" maxlength="25" />
<input type="submit" name="submit" value="Caluclate Discount"/>
</form>
我想将整个网站翻译成多种语言。我需要翻译按钮文本Caluclate Discount。我怎样才能做到这一点?如果我使用{% trans %} 标签,视图将如何捕获正确的发布请求?
更新
像这样在同一页面上有很多表单,我的视图使用if postdata['submit']=="Caluclate Discount" 来确定它是哪个提交请求。
【问题讨论】:
标签: django django-forms django-templates django-views