Make delete alarm last action in menu. Remove demo data
This commit is contained in:
parent
fafcbe78f8
commit
e141fe94f1
@ -155,10 +155,10 @@ class AlarmsTable(tables.DataTable):
|
|||||||
verbose_name = _("Alarms")
|
verbose_name = _("Alarms")
|
||||||
row_actions = (ShowAlarmHistory,
|
row_actions = (ShowAlarmHistory,
|
||||||
ShowAlarmMeters,
|
ShowAlarmMeters,
|
||||||
|
EditAlarm,
|
||||||
DeleteAlarm,
|
DeleteAlarm,
|
||||||
EditAlarm, )
|
)
|
||||||
table_actions = (CreateNotification, CreateAlarm, )
|
table_actions = (CreateNotification, CreateAlarm, )
|
||||||
status_columns = ['status']
|
|
||||||
|
|
||||||
|
|
||||||
class AlarmHistoryTable(tables.DataTable):
|
class AlarmHistoryTable(tables.DataTable):
|
||||||
@ -179,4 +179,3 @@ class AlarmHistoryTable(tables.DataTable):
|
|||||||
name = "users"
|
name = "users"
|
||||||
verbose_name = _("Alarm History")
|
verbose_name = _("Alarm History")
|
||||||
row_actions = (ShowAlarmMeters,)
|
row_actions = (ShowAlarmMeters,)
|
||||||
status_columns = ['status']
|
|
||||||
|
@ -334,17 +334,8 @@ class AlarmHistoryView(tables.DataTableView):
|
|||||||
return super(AlarmHistoryView, self).dispatch(*args, **kwargs)
|
return super(AlarmHistoryView, self).dispatch(*args, **kwargs)
|
||||||
|
|
||||||
def get_data(self):
|
def get_data(self):
|
||||||
results = [
|
# to be implemented
|
||||||
{'Host': 'Compute1', 'Service': 'Nova', 'Status': 'CRITICAL',
|
results = []
|
||||||
'Last_Check': 'Feb 12 2014 2:34 CST',
|
|
||||||
'Status_Information': 'API Response Time'},
|
|
||||||
{'Host': 'Compute1', 'Service': 'Nova', 'Status': 'OK',
|
|
||||||
'Last_Check': 'Feb 12 2014 2:45 CST',
|
|
||||||
'Status_Information': 'API Response Time'},
|
|
||||||
{'Host': 'Compute1', 'Service': 'Nova', 'Status': 'WARNING',
|
|
||||||
'Last_Check': 'April 18 2014 8:45 CST',
|
|
||||||
'Status_Information': 'API Response Time'}
|
|
||||||
]
|
|
||||||
|
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user