如何在模板代码中显示我的数据?

时间:2018-03-10 08:59:43

标签: django django-models django-templates python-3.6

模板不是渲染..

我试图通过django将我的内容显示到模板页面。

如何将视图中的内容显示到模板。

这是模板代码:

  <html>
      <body>
          {% if latest_question_list %}
           <ul>
               {% for question in latest_question_list %}
               <li><a href="/projectapp/{{question.id}}/">{{ question.question_text }}</a></li>
               {% endfor %}
           </ul>
           {% elae %}
               <p>No polls are available.</p>
          {% endif %}
      </body>
   </html>

这里是view.py页面代码:

def index(request)
  latest_question_list = Question.object.order_by('-pub_date')[:5]
  template = loader.get_template('projectapp/index.html')
  context = {
        'latest_question_list':latest_question_list,
   }
  return HttpResponse(template.render(context, request))

0 个答案:

没有答案