django_tables2 テーブルの列のリストを取得することは可能ですか?
# tables.py
import django_tables2 as tables
class MyTable(tables.Table):
firstcol = tables.Column()
secondcol = tables.Column()
次に関数を使用します...
>>> MyTable.function_to_list_cols()
['firstcol', 'secondcol']