我让一个Admin用户上传了目的地。数据保存在数据库中,并且以平滑的方式(图像除外)获得。并在控制台中显示此错误 “无法加载资源:服务器响应状态为500(内部服务器错误)”
HTML
{% for dest in dests %}
<!-- Destination -->
<div class="destination item">
<div class="destination_image">
<img src="{{dest.img.url}}" alt="">
{% if dest.offer %}
<div class="spec_offer text-center"><a href="#">Special Offer</a></div>
{% endif %}
</div>
<div class="destination_content">
<div class="destination_title"><a href="destinations.html">{{dest.name}}</a></div>
<div class="destination_subtitle"><p>{{dest.description}}</p></div>
<div class="destination_price">From ${{dest.price}}</div>
</div>
</div>
{% endfor %}
Views.py
def index(request):
dests = Destination.objects.all()
return render (request, 'index.html',{'dests':dests})
在Chrome的控制台中: 无法加载资源:服务器的状态为500(服务器内部错误)