如何将注销按钮添加到管理菜单栏中

时间:2019-07-15 14:40:59

标签: python flask flask-admin

我已经创建了管理页面,但是我的管理页面没有注销按钮

我已经尝试添加按钮,但是找不到管理页面的html代码。

class MyModelView(ModelView):
    def is_accessible(self):

        return current_user.is_authenticated


class MyAdminIndexView(AdminIndexView):
    def is_accessible(self):
            return current_user.is_authenticated


admin=Admin(app,index_view=MyAdminIndexView())

admin.add_view(MyModelView(users,db.session))
admin.add_view(MyModelView(posts,db.session))
admin.add_view(MyModelView(comment,db.session))

admin page

0 个答案:

没有答案