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")
|
||||
row_actions = (ShowAlarmHistory,
|
||||
ShowAlarmMeters,
|
||||
EditAlarm,
|
||||
DeleteAlarm,
|
||||
EditAlarm, )
|
||||
)
|
||||
table_actions = (CreateNotification, CreateAlarm, )
|
||||
status_columns = ['status']
|
||||
|
||||
|
||||
class AlarmHistoryTable(tables.DataTable):
|
||||
@ -179,4 +179,3 @@ class AlarmHistoryTable(tables.DataTable):
|
||||
name = "users"
|
||||
verbose_name = _("Alarm History")
|
||||
row_actions = (ShowAlarmMeters,)
|
||||
status_columns = ['status']
|
||||
|
@ -334,17 +334,8 @@ class AlarmHistoryView(tables.DataTableView):
|
||||
return super(AlarmHistoryView, self).dispatch(*args, **kwargs)
|
||||
|
||||
def get_data(self):
|
||||
results = [
|
||||
{'Host': 'Compute1', 'Service': 'Nova', 'Status': 'CRITICAL',
|
||||
'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'}
|
||||
]
|
||||
# to be implemented
|
||||
results = []
|
||||
|
||||
return results
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user