将 Flask-Admin 与 Mongoengine 一起使用,我在尝试为提交的帖子列表自定义模型视图时被卡住了。这个想法是为每个帖子添加一个单元格(对应于列表中的一行),以显示每个帖子上提交的评论数量。
我get
在类中添加了以下方法:
class PostView(ModelView):
def get(self):
posts = Post.objects.all()
return render_template('admin/model/list.html', posts=posts)
list.html 包含以下内容:
<td>
{% for d in posts %}
{% with total=d.comments | length %}
{{ total }}
{% endwith %}
{% endfor %}
<td>
表格单元格保持空白。我应该怎么做?提前致谢 !