{% extends "base.html" %} {% block title %}帖子管理{% endblock %} {% block content %}

帖子管理

{% for post in posts %} {% endfor %}
ID 标题 内容 作者 封禁状态 发布时间 操作
{{ post.id }} {{ post.title }} {{ post.content[:50] }}{% if post.content|length > 50 %}...{% endif %} {{ post.username }} {% if post.banned == 0 %} 正常 {% else %} 已封禁 {% endif %} {{ post.created_at }}
{% if post.banned == 0 %} {% else %} {% endif %}
{% endblock %}