我试图在开发环境中更改开源的内容。
示例。 :我需要更改主页面中的行。 "什么是新的django com ......?"
{% block content %}<BR/>
<h1>{% trans "What's new in Django community blogs? %}</h1><BR/>
{% autopaginate posts 15 %}<BR/>
{% for post in posts %}<BR/>
<div class="post"><BR/>
{% post_details post %}<BR/>
</div><BR/>
{% endfor %}<BR/>
更改这条线之后
{% block content %}<BR/>
<h1>{% trans "Community blog sites %}</h1><BR/>
{% autopaginate posts 15 %}<BR/>
{% for post in posts %}<BR/>
<div class="post"><BR/>
{% post_details post %}<BR/>
</div><BR/>
{% endfor %}<BR/>
我点击刷新按钮它没有改变..为什么?
答案 0 :(得分:1)
您忘记在trans
两次关闭字符串......
<h1>{% trans "Community blog sites" %}</h1><BR/>
^ there