python django tables2多对多的渲染器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python django tables2多对多的渲染器相关的知识,希望对你有一定的参考价值。

groups = Column(verbose_name=u"Uprawnienia", orderable=False, accessor='name', empty_values=())

def render_groups(self, record):
	if record.groups is not None:
		return ', '.join([group.name for group in record.groups.all()])
	return '-'

class Meta:
	model = Agent
	fields = ('username', 'first_name', 'last_name', 'email', 'groups')

以上是关于python django tables2多对多的渲染器的主要内容,如果未能解决你的问题,请参考以下文章

用于递归多对多的 Django Admin 内联

python django的ManyToMany简述

多对多的 Django Inline 生成重复查询

DJANGO:在模板中显示多对多的附加字段

Django

如何使用 Django 中的成员资格访问多对多的属性