我已經使我網站上的用戶可以上傳帖子,並查看來自其他用戶的所有其他帖子。下面的代碼附加了編寫帖子userpicture的用戶。使用戶圖片成爲鏈接
我希望它成爲該用戶的鏈接。我的問題是,下面的代碼鏈接到當前用戶,而不是創建帖子的用戶。
任何人有一些想法如何解決這個問題?謝謝!
{% if item.sender.userpicture_set.all %}
{% for item in item.sender.userpicture_set.all %}
{% if item.active %}
{% if forloop.first %}
{% if forloop.last %}
<a href='/members/{{ user.username }}'><img src='{{ MEDIA_URL }}{{ item.image }}' class='img-responsive' id='post-userpicture'/></a>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
<small><a href='/members/{{ user.username }}'>{{ item.sender }}</a><span style='color: grey;'> {{ item.sent }}</span></small>
{% endif %}
在您的模型中,如果您已將用戶的外鍵字段添加到帖子(上載的)模型中,則可以使用上下文在視圖中檢索用戶。你可能需要你的模型和視圖來幫助你更多。 – abrunet