0

我有一个表格,在其中比较所选数据的两个版本。该数据实际上存储了多个版本,因此在我的表中,我的列如下:

    class ver_compare(tables.Table):
       new_db = tables.CheckBoxColumn()
       data = tables.Column()
       current_rev = tables.Column()
       next_rev = tables.Column()*

现在,我希望作为每个单元格的最后一个字段有一个可供选择的版本下拉列表,类似于选择字段。有什么办法可以走吗??

提前致谢!!

4

1 回答 1

3

您可以使用模板列。这里有我能想到的最简单的模型。当然,您需要将模板更改为更有用的东西。

countries = [
    {'name': 'Australia', 'population': 21, 'tz': 'UTC +10', 'visits': 1},
    {'name': 'Germany', 'population': 81, 'tz': 'UTC +1', 'visits': 2},
    {'name': 'Mexico', 'population': 107, 'tz': 'UTC -6', 'visits': 0},
]

template = """
<select>
<option{% if record.visits = 0%} selected {% endif %}>0
<option{% if record.visits = 1%} selected {% endif %}>1
<option{% if record.visits = 2%} selected {% endif %}>2
</select>
"""

class CountryTable(tables.Table):
    name = tables.Column()
    population = tables.Column()
    tz = tables.Column(verbose_name='time zone')
    visits = tables.TemplateColumn(template)
于 2012-07-04T11:23:22.333 回答