Solve operation logs ui broken

The operation logs ui is broken and throws the following exception:
'IndexView' object has no attribute '_more'.
It should be solved by removing the paging function.

Change-Id: I04a3ae4cea5593b992914f97f3ed9547730d4c87
Closes-Bug: #1643515
This commit is contained in:
xiangxinyong 2016-11-21 19:39:07 +08:00
parent c4a51d9d7c
commit c56125a110
1 changed files with 0 additions and 6 deletions

View File

@ -24,12 +24,6 @@ class IndexView(horizon_tables.DataTableView):
template_name = 'operationlogs/index.html'
page_title = _("Operation Logs")
def has_prev_data(self, table):
return self._prev
def has_more_data(self, table):
return self._more
def get_data(self):
logs = []
return logs