本文介绍了Django模板的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
{% for x in featured %}
<li class="panel">
<h3>
{% if x.title|length > 12 %}
{{x.title|slice:":12"}}...
{% else %}
{{x.title}}
{% endif %}
</h3>
<h4>
{% if x.details|length > 30 %}
{{x.details|slice:":30"}}...
{% else %}
{{x.details}}
{% endif %}
</h4>
<p class="btnlinks">
<i>noch <span>{{x.free_lots}}</span> lose</i>
<a href="{{base_url}}ProductDetails/?lotid={{x.lotteryid.0}}" class="btn">zuR verlosung</a>
<a href="{{base_url}}ProductDetails/?lotid={{x.lotteryid.0}}" class="mainlinkto"><img src="{{ STATIC_PREFIX }}images/base/arrowyellow.png" /></a>
</p>
<p class="slids"><img src="data:image/gif;base64,{{x.picture}}" ></p>
</li>
{% endfor %}
我想翻译zuR verlosung,noch,lose。在模板中,如果我使用trans或block trans,则显示错误消息
I want to translate zuR verlosung,noch,lose .i am in templates if i use trans or block trans it is showing me error says
Invalid block tag: 'blocktrans', expected 'empty' oder 'endfor'
预先感谢
推荐答案
来自:
这篇关于Django模板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!