我尝试从我的应用程序发送带有通用视图的数据
urlpatterns = patterns('',
(r'*', ListView.as_view(
queryset=Post.objects.all().order_by("-created")[:2],
template_name="/mysite/templates/index.html"
)),
)
但是,无法通过 ic/p 此查询发送数据并返回结果。少了什么东西?
在 mysite/templates/index.html
{% for post in object_list %}
{{ post.title }}
{% endfor %}
什么都不打印