我正在尝试设置默认图片,如果用户没有使用{%empty%}
上传一个带有sorl-thumbnail的图片{% thumbnail event.user.userprofile.photo "70x70" crop="center" as im %}
<img style="border: 2px solid white" src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
{% empty %}
<img src="{% static "img/default.png" %}">
{% endthumbnail %}
但是默认图片没有显示原因?
如果您要回答,请不要通过将我重定向到文档网站来回答问题,因为我已经多次阅读过它。
用户个人资料模型
class UserProfile (models.Model):
user = models.OneToOneField(User)
photo = models.ImageField(blank=True, upload_to='accounts/user_profile/photo/')