django-tables2 linkcolumn同一单元格中的多个项目
我想使用 tables.LinkColumn
将多个“项目”添加到同一单元格。
像这样的事情:
column_name = tables.LinkColumn('some_url_edit', args=[A('pk')], attrs={'class':'tbl_icon edit'})
column_name += tables.LinkColumn('some_url_del', args=[A('pk')], attrs={'class':'tbl_icon delete'})
column_name += ...
这可能吗?或者我应该创建自己的表格视图,而不使用 django-tables 。
谢谢!
I'd like to add multiple 'items' to the same cell using tables.LinkColumn
.
Something like this:
column_name = tables.LinkColumn('some_url_edit', args=[A('pk')], attrs={'class':'tbl_icon edit'})
column_name += tables.LinkColumn('some_url_del', args=[A('pk')], attrs={'class':'tbl_icon delete'})
column_name += ...
Is this even possible? or should I create my own table view, without django-tables
.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有两个选择,要么使用
TemplateColumn
,或者编写render_FOO
方法。下面是一个使用
TemplateColumn
的示例(如您所见,记录已添加到用于呈现模板的上下文中,从而允许您通过 < code>record.pk:使用
render_FOO
的示例:如您所见,
TemplateColumn
方法可能更干净一些你的情况。
You have two options here, either use a
TemplateColumn
, or write arender_FOO
method.Here is an example using the
TemplateColumn
(as you can see the record is added to the context that is used to render the template, thus allowing you to access thepk
viarecord.pk
:Example using the
render_FOO
:As you can see the
TemplateColumn
approach is probably a little cleaner inyour case.
渲染 foo 的示例对我来说不起作用,列定义为
tables.Column()
。现在我将 TemplateColumn 与 render_FOO 一起使用。
Example with render foo didn't work for me with column defined as
tables.Column()
.Now i use TemplateColumn with render_FOO.