當我試圖將投票/索引頁面擴展到我的主博客/索引頁面時,我得到空白頁面。 Whay我明白了嗎?擴展模板頁面時的空白頁面
博客/ index.html的
{% extends "polls/index.html" %}
<!doctype "html5">
<html>
<head>
.....
{% block poll %}{% endblock %}
民調/ index.html的
{% block poll %}
{% if latest_poll_list %}
<ul>
{% for poll in latest_poll_list %}
<li><a href="{% url 'polls:detail' poll.id %}">{{ poll.question }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
{% endblock %}
好,我在民意測驗/ index.html的'{%伸出 「博客/ index.html的」 %執行}',但它沒有實現任何東西,現在我可以看到頁面,但民意調查模型沒有 – Eriks
@EriksJauga,檢查你是否正確地傳遞了'latest_poll_list'。 (在'if ...'之前放'latest_poll_list:{{latest_poll_list}}')。 – falsetru
我真的不知道我現在應該做什麼。它不包括任何東西在我的主要博客/ index.html,理由/帖子/它增加了風格和新聞沒有找到,我不需要... – Eriks