在views.py 中,我从特定用户那里检索推文,然后将其显示在模板中,这很有效。
但是,它只是原始文本,即链接不可点击,问题是使它们可点击的最佳方法是什么?
注意 1:我所指的链接可以是任何链接,但最有可能是 Instagram 链接
注意 2:如果可能的话,我什至希望标签是可点击的。
view.py 中的代码
user = twitter.User
tweets = []
statuses = t.GetUserTimeline(user)
for s in statuses:
tweets.append(s.text)
html:
<div class="col2">
<ol class="ol_list">
<h4>Twitter</h4>
{% for tweet in tweets %}
<li>
<p>{{tweet}}</p>
</li>
{% endfor %}
</ol>
</div>