Files
freezer-web-ui/freezer_ui/clients/tables.py
Ivan Anfimov b2658648e5 Fix for various mistakes with spaces and remove * at the fields since such is not used anywhere in Horizon
Change-Id: Ic1606782ff0bfca2a201be012891f00a61ebbb70
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
2025-09-05 11:54:34 +00:00

75 lines
2.2 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from django.utils.translation import gettext_lazy as _
from django.utils.translation import ngettext_lazy
from horizon import tables
from django.urls import reverse
import freezer_ui.api.api as freezer_api
from freezer_ui.utils import shield
class Filter(tables.FilterAction):
filter_type = "server"
filter_choices = (("exact", "Exact text", True),)
class DeleteClient(tables.DeleteAction):
help_text = _("Deleted Clients is not recoverable.")
@staticmethod
def action_present(count):
return ngettext_lazy(
"Delete Client",
"Delete Clients",
count
)
@staticmethod
def action_past(count):
return ngettext_lazy(
"Deleted Client",
"Deleted Clients",
count
)
@shield("Unable to delete client", redirect="clients:index")
def delete(self, request, client_id):
return freezer_api.Client(request).delete(client_id)
class DeleteMultipleClients(DeleteClient):
name = "delete_multiple_clients"
def get_link(client):
return reverse('horizon:disaster_recovery:clients:client',
kwargs={'client_id': client.id})
class ClientsTable(tables.DataTable):
client_id = tables.Column('client_id', verbose_name=_("Client ID"),
link=get_link)
name = tables.Column('hostname', verbose_name=_("Hostname"))
def get_object_display_key(self, datum):
return "hostname"
class Meta(object):
name = "clients"
verbose_name = _("Clients")
row_actions = (DeleteClient,)
table_actions = (Filter, DeleteMultipleClients,)
multi_select = True