试图在django模板中显示静态文件夹中的图像时出现问题

时间:2016-05-28 18:13:11

标签: python django django-templates

我试图在我的模板中显示图片,如果该个人资料没有任何图片。我的模板中有这段代码

{% 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'

2 个答案:

答案 0 :(得分:0)

你有一个拼写错误 - 关键字是static,而不是satic

答案 1 :(得分:0)

我通过将缺少的{% load staticfiles %}放在子模板的开头来解决了这个问题。