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 %}
しかし、「http://127.0.0.1:8000/list_publisher/」を実行すると、テンプレートはエラーなしでページ タイトルを出力します。私は何を間違っていますか?