答案 0 :(得分:0)
使用flask-admin中的规则,您可以更改创建表单或编辑表单的外观。
class View(sqla.ModelView):
form_create_rules = {
#for instance
attribute1,
rules.Header('A header'),
attribute2
}
如果您想要更多自定义,您还可以使用格式化程序
class View(sqla.ModelView):
form_create_rules = {
#for instance
attribute1,
rules.Header('A header'),
attribute2
}
def _a_column_formatter(view, context, model, name):
#returns the content of a row in h3 html tags
return Markup('<h3>{}</h3>'.format(model.attribute))
column_formatters = {
'ticket_name': _a_column_formatter
}