1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #13150: Wrap table column headers with gettext()

Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
This commit is contained in:
Arthur Hanson
2023-08-01 01:35:28 +07:00
committed by GitHub
parent 34a960505d
commit e284cd7e54
30 changed files with 823 additions and 328 deletions

View File

@@ -1,3 +1,4 @@
from django.utils.translation import gettext_lazy as _
import django_tables2 as tables
from ipam.models import *
@@ -11,13 +12,17 @@ __all__ = (
class ServiceTemplateTable(NetBoxTable):
name = tables.Column(
verbose_name=_('Name'),
linkify=True
)
ports = tables.Column(
verbose_name=_('Ports'),
accessor=tables.A('port_list'),
order_by=tables.A('ports'),
)
comments = columns.MarkdownColumn()
comments = columns.MarkdownColumn(
verbose_name=_('Comments'),
)
tags = columns.TagColumn(
url_name='ipam:servicetemplate_list'
)
@@ -32,17 +37,22 @@ class ServiceTemplateTable(NetBoxTable):
class ServiceTable(NetBoxTable):
name = tables.Column(
verbose_name=_('Name'),
linkify=True
)
parent = tables.Column(
verbose_name=_('Parent'),
linkify=True,
order_by=('device', 'virtual_machine')
)
ports = tables.Column(
verbose_name=_('Ports'),
accessor=tables.A('port_list'),
order_by=tables.A('ports'),
)
comments = columns.MarkdownColumn()
comments = columns.MarkdownColumn(
verbose_name=_('Comments'),
)
tags = columns.TagColumn(
url_name='ipam:service_list'
)