Django模板超链接不会显示出来

时间:2014-10-26 20:59:06

标签: python django

我正在尝试在模板中创建超链接。这是如何:

<a {% url 'favourited' tweet.id%}>{{tweet.favourite.count }}</a>

Howerver,它只呈现{{tweet.favourite.count }}部分。

有趣的是,如果没有超链接,此{% url 'favourited' tweet.id%}会返回正确的链接:favourited/1

问题出在哪里?

1 个答案:

答案 0 :(得分:3)

你的意思是:

<a href="{% url 'favourited' tweet.id%}">{{tweet.favourite.count}} </a>