Django:无法在DetailView中显示对象图像

时间:2017-11-05 08:43:07

标签: python django

正如您在镜头屏幕中看到的那样,对象图像显示在ListVIew中。但我无法在DetailView中使用相同的URL访问此图像。

列表视图:

  {% for team in teams %}
      <tr>
          <td>{{ forloop.counter }}</td>
          <td><img src="{% thumbnail team.logo 30x30 %}" alt=""> {{ team.name }}</td>
          ....

List View shot screen

详情视图:

 ...
 <h3 class="page-header"><img src="{% thumbnail team.logo 30x30 %}">{{ team.name }}</h3>
 ...

Detail View shot-screen

0 个答案:

没有答案