Merge "Remove the unused attributes in the tables"

This commit is contained in:
Zuul 2018-09-07 09:17:43 +00:00 committed by Gerrit Code Review
commit 21a24d6fd5
2 changed files with 0 additions and 7 deletions

View File

@ -37,7 +37,6 @@ class DeleteService(tables.DeleteAction):
verbose_name = _("Delete Service") verbose_name = _("Delete Service")
data_type_singular = _("Service") data_type_singular = _("Service")
data_type_plural = _("Services") data_type_plural = _("Services")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):
@ -97,7 +96,6 @@ class DeleteGroup(tables.DeleteAction):
verbose_name = _("Delete Group") verbose_name = _("Delete Group")
data_type_singular = _("Group") data_type_singular = _("Group")
data_type_plural = _("Groups") data_type_plural = _("Groups")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):
@ -185,7 +183,6 @@ class DeleteServiceThreshold(tables.DeleteAction):
verbose_name = _("Delete Service Threshold") verbose_name = _("Delete Service Threshold")
data_type_singular = _("Service Threshold") data_type_singular = _("Service Threshold")
data_type_plural = _("Service Thresholds") data_type_plural = _("Service Thresholds")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):
@ -213,7 +210,6 @@ class DeleteFieldThreshold(tables.DeleteAction):
verbose_name = _("Delete Field Threshold") verbose_name = _("Delete Field Threshold")
data_type_singular = _("Field Threshold") data_type_singular = _("Field Threshold")
data_type_plural = _("Field Thresholds") data_type_plural = _("Field Thresholds")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):
@ -354,7 +350,6 @@ class DeleteField(tables.DeleteAction):
verbose_name = _("Delete Field") verbose_name = _("Delete Field")
data_type_singular = _("Field") data_type_singular = _("Field")
data_type_plural = _("Fields") data_type_plural = _("Fields")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):
@ -427,7 +422,6 @@ class DeleteMapping(tables.DeleteAction):
verbose_name = _("Delete Mapping") verbose_name = _("Delete Mapping")
data_type_singular = _("Mapping") data_type_singular = _("Mapping")
data_type_plural = _("Mappings") data_type_plural = _("Mappings")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):

View File

@ -52,7 +52,6 @@ class DeletePyScript(tables.DeleteAction):
verbose_name = _("Delete Script") verbose_name = _("Delete Script")
data_type_singular = _("PyScript") data_type_singular = _("PyScript")
data_type_plural = _("PyScripts") data_type_plural = _("PyScripts")
icon = "remove"
@staticmethod @staticmethod
def action_present(count): def action_present(count):