yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #14021
[Bug 1314450] [NEW] cannot get 'data_types' opt in MixedDataTableView
Public bug reported:
Cannot get 'data_types' and 'data_type_name' options while using
MixedDataTableView.
In horizon/tables/views.py, line237:
for data_type in table.data_types:
should be
for data_type in table._meta.data_types:
while in line 252:
setattr(datum, self.table_class.data_type_name,
should be
setattr(datum, self.table_class._meta.data_type_name,
** Affects: horizon
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).
https://bugs.launchpad.net/bugs/1314450
Title:
cannot get 'data_types' opt in MixedDataTableView
Status in OpenStack Dashboard (Horizon):
New
Bug description:
Cannot get 'data_types' and 'data_type_name' options while using
MixedDataTableView.
In horizon/tables/views.py, line237:
for data_type in table.data_types:
should be
for data_type in table._meta.data_types:
while in line 252:
setattr(datum, self.table_class.data_type_name,
should be
setattr(datum, self.table_class._meta.data_type_name,
To manage notifications about this bug go to:
https://bugs.launchpad.net/horizon/+bug/1314450/+subscriptions
Follow ups
References