显示此错误:
“图像”标签的格式应为 {% image self.photo max-320x200 [ custom-attr="value" ... ] %} 或 {% image self.photo max-320x200 as img %}
第 19 行 {% image block.value as mein_bild %}
我的模板:
{% extends "base.html" %}
{% load static wagtailcore_tags wagtailimages_tags %}
{% block content %}
<div class="notiert">
<header>
<h1>{{ page.title }}</h1>
</header>
<div class="body">
{{ page.kurzfassung|richtext }}
<p>{{ page.first_published_at }}</p>
{% for block in self.notiert_feld %}
{% if block.block_type == 'image' %}
<p>in if image {{ block.value }}</p>
{% image block.value as mein_bild %}
<img {{ mein_bild }} width=530 >
{% else %}
{{ block.value }}
{% endif %}
{% endfor %}
</div>
</div>
{% 端块 %}
第 18 行我用于调试。如果我删除第 19 行和第 20 行,则会显示图像的名称。