Source code for horizon.dashboards.syspanel.quotas.tables
import logging
from django.utils.translation import ugettext_lazy as _
from horizon import tables
LOG = logging.getLogger(__name__)
[docs]class QuotaFilterAction(tables.FilterAction):
[docs] def filter(self, table, tenants, filter_string):
q = filter_string.lower()
def comp(tenant):
if q in tenant.name.lower():
return True
return False
return filter(comp, tenants)
[docs]def get_quota_name(quota):
return quota.name.replace("_", " ").title()
[docs]class QuotasTable(tables.DataTable):
name = tables.Column(get_quota_name, verbose_name=_('Quota Name'))
limit = tables.Column("limit", verbose_name=_('Limit'))
[docs] def get_object_id(self, obj):
return obj.name