我试图在我的模板中显示图片,如果该个人资料没有任何图片。我的模板中有这段代码
{% if not profileForm.avatar %}
<img src="{% static 'img/empty-profile-picture.png' %}" alt="" />
{% endif %}
我得到了那个错误
Template error:
In template /home/jaime/djcode/urgencias/templates/usuarios/profile_edit.html, error at line 68
Invalid block tag: 'static', expected 'elif', 'else' o 'endif'
答案 0 :(得分:0)
你有一个拼写错误 - 关键字是static
,而不是satic
。
答案 1 :(得分:0)
我通过将缺少的{% load staticfiles %}
放在子模板的开头来解决了这个问题。