无法加载资源:状态为500(内部服务器错误)Django

时间:2019-10-01 18:57:13

标签: python django database postgresql localhost

我让一个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(服务器内部错误)

0 个答案:

没有答案