作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 django Publisher 示例,我想通过我的 list_publisher.html 模板列出数据库中的所有发布者,我的模板看起来像;
{% extends "admin/base_site.html" %}
{% block title %}List of books by publisher{% endblock %}
{% block content %}
<div id="content-main">
<h1>List of publisher:</h1>
{%regroup publisher by name as pub_list %}
{% for pub in pub_list %}
<li>{{ pub.name }}</li>
{% endfor %}
</div>
{% endblock %}
最佳答案
几点建议:
{% block content %}{% endblock %}
部分由您的 my list_publisher.html 细化 {%regroup publisher by name as pub_list %}{{ pub_list|length }}
.那至少应该显示您的列表的长度。如果是'0'...你知道为什么它不显示任何内容{% regroup publisher|dictsort:"name" by name as pub_list %}
确定publisher = Publisher.objects.all().order_by("name")
关于django - 如何在我的 Django 模型中列出项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/274529/
我是一名优秀的程序员,十分优秀!