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

时间:2017-03-30 18:29:12

标签: tags wagtail

我正在遵循本指南> http://0.0.0.0:8000/tags/?tag=lorem

据我所知,我完全按照指南编写了指南,但在查看单个博客帖子时标签不会加载,标签页面也没有显示标签列表。我没有收到任何错误,他们只是没有出现。

他们在通过链接搜索时显示,例如{{3}}

感谢。

1 个答案:

答案 0 :(得分:0)

我一直在自己搞清楚事情。 Wawtail需要更新他们的文档以使其更具体,但这里的代码在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 %}