在帖子或 /tag 页面下未显示 Wagtail 的标签

Tags not showing for Wagtail under posts or /tag page

我正在遵循此指南> http://docs.wagtail.io/en/v1.9/getting_started/tutorial.html#tagging-posts

据我所知,我完全按照指南中的说明进行了操作,但是在查看个别博客文章时标签不会加载,标签页也没有显示标签列表。我没有收到任何错误,它们只是没有出现。

它们在通过 link 进行搜索时显示,例如http://0.0.0.0:8000/tags/?tag=lorem.

谢谢。

我一直在自己解决问题。 Wagtail 需要更新他们的文档以使其更具体,但这是在 blog/blog_page.html:

中对我有用的代码
{% extends "base.html" %}

{% load wagtailcore_tags wagtailimages_tags %}

{% block body_class %}template-blogpage{% endblock %}

{% block content %}
    <h1>{{ page.title }}</h1>
    <p class="meta">{{ page.date }}</p>

{% with categories=page.categories.all %}
    {% if categories %}
        <h3>Posted in:</h3>
        <ul>
            {% for category in categories %}
                <li style="display: inline">
                    {% image category.icon fill-32x32 style="vertical-align: middle" %}
                    {{ category.name }}
                </li>
            {% endfor %}
        </ul>
    {% endif %}
{% endwith %}

{% if page.tags.all.count %}
    <div class="tags">
        <h3>Tags</h3>
        {% for tag in page.tags.all %}
            <a href="{% slugurl 'tags' %}?tag={{ tag }}"><button type="button">{{ tag }}<$
        {% endfor %}
    </div>
{% endif %}

    <div class="intro">{{ page.intro }}</div>

    {{ page.body|richtext }}

    {% for item in page.gallery_images.all %}
        <div style="float: left; margin: 10px">
            {% image item.image fill-320x240 %}
            <p>{{ item.caption }}</p>
        </div>
    {% endfor %}

    <p><a href="{{ page.get_parent.url }}">Return to blog</a></p>

{% endblock %}