{% if %} 块中的 Django 模板标签不显示

Django Template tag in {% if %} block does not show

我正在用 Django 制作公告板。

如何用我想要的字母而不是型号来表达呢? my bulletin board

HTML 模板(board.html)

{% for p in postlist %}
    <tr>
        <td>
            {% if p.p_type == '1' %}
            'cloud'
            {% elif p.p_type == '2' %}
            'wind'
            {% endif %}
        </td>
    </tr>
{% endfor %}

输出

(EMPTY)

预计

cloud wind

Vies.py

def board(request, p_type=None):
    current_type = None
    p_types = PostType.objects.all()
    postlist = Post.objects.all()

    page = request.GET.get('page', '1')
    if p_type:
        current_type = get_object_or_404(PostType, p_type=p_type)
        postlist = postlist.filter(p_type=current_type)

    paginator = Paginator(postlist, 10)  # Showing 20 posts.
    page_obj = paginator.get_page(page)

    return render(request, 'board/board.html', {'current_type':current_type, 'p_types': p_types, 'postlist': page_obj})

Model.py

class PostType(models.Model):
p_type = models.CharField(max_length=200, db_index=True)

def __str__(self):
    return self.p_type

def get_ptype_url(self):
    return reverse('board:board', args=[self.p_type])

尝试 this.In django 当你创建一个外键时,它会为数据库添加 _id 所以现在在你的模板中你可以使用这个 id(p_type_id) 和您应该确定 Cloud 的 pk=1 和 Wind 的 pk=2.

{% for p in postlist %}
    <tr>
        <td>
            {% if p.p_type_id == 1 %}
                'cloud'
                {% elif p.p_type_id == 2 %}
                'wind'
                {% endif %}
            </td>
        </tr>
    {% endfor %}