diff --git a/netbox/circuits/tables.py b/netbox/circuits/tables.py index 0fa236fac..b5ea02977 100644 --- a/netbox/circuits/tables.py +++ b/netbox/circuits/tables.py @@ -6,9 +6,9 @@ from utilities.tables import BaseTable, ToggleColumn from .models import Circuit, CircuitType, Provider -CIRCUITTYPE_EDIT_LINK = """ +CIRCUITTYPE_ACTIONS = """ {% if perms.circuit.change_circuittype %} - Edit + {% endif %} """ @@ -37,11 +37,12 @@ class CircuitTypeTable(BaseTable): name = tables.LinkColumn(verbose_name='Name') circuit_count = tables.Column(verbose_name='Circuits') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=CIRCUITTYPE_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=CIRCUITTYPE_ACTIONS, attrs={'td': {'class': 'text-right'}}, + verbose_name='') class Meta(BaseTable.Meta): model = CircuitType - fields = ('pk', 'name', 'circuit_count', 'slug', 'edit') + fields = ('pk', 'name', 'circuit_count', 'slug', 'actions') # diff --git a/netbox/dcim/tables.py b/netbox/dcim/tables.py index 75ad3fb72..334a75cb0 100644 --- a/netbox/dcim/tables.py +++ b/netbox/dcim/tables.py @@ -16,27 +16,27 @@ DEVICE_LINK = """ """ -RACKGROUP_EDIT_LINK = """ +RACKGROUP_ACTIONS = """ {% if perms.dcim.change_rackgroup %} - Edit + {% endif %} """ -DEVICEROLE_EDIT_LINK = """ +DEVICEROLE_ACTIONS = """ {% if perms.dcim.change_devicerole %} - Edit + {% endif %} """ -MANUFACTURER_EDIT_LINK = """ +MANUFACTURER_ACTIONS = """ {% if perms.dcim.change_manufacturer %} - Edit + {% endif %} """ -PLATFORM_EDIT_LINK = """ +PLATFORM_ACTIONS = """ {% if perms.dcim.change_platform %} - Edit + {% endif %} """ @@ -85,11 +85,12 @@ class RackGroupTable(BaseTable): site = tables.LinkColumn('dcim:site', args=[Accessor('site.slug')], verbose_name='Site') rack_count = tables.Column(verbose_name='Racks') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=RACKGROUP_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=RACKGROUP_ACTIONS, attrs={'td': {'class': 'text-right'}}, + verbose_name='') class Meta(BaseTable.Meta): model = RackGroup - fields = ('pk', 'name', 'site', 'rack_count', 'slug', 'edit') + fields = ('pk', 'name', 'site', 'rack_count', 'slug', 'actions') # @@ -136,11 +137,12 @@ class ManufacturerTable(BaseTable): name = tables.LinkColumn(verbose_name='Name') devicetype_count = tables.Column(verbose_name='Device Types') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=MANUFACTURER_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=MANUFACTURER_ACTIONS, attrs={'td': {'class': 'text-right'}}, + verbose_name='') class Meta(BaseTable.Meta): model = Manufacturer - fields = ('pk', 'name', 'devicetype_count', 'slug', 'edit') + fields = ('pk', 'name', 'devicetype_count', 'slug', 'actions') # @@ -232,11 +234,12 @@ class DeviceRoleTable(BaseTable): device_count = tables.Column(verbose_name='Devices') slug = tables.Column(verbose_name='Slug') color = tables.Column(verbose_name='Color') - edit = tables.TemplateColumn(template_code=DEVICEROLE_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=DEVICEROLE_ACTIONS, attrs={'td': {'class': 'text-right'}}, + verbose_name='') class Meta(BaseTable.Meta): model = DeviceRole - fields = ('pk', 'name', 'device_count', 'slug', 'color') + fields = ('pk', 'name', 'device_count', 'slug', 'color', 'actions') # @@ -248,11 +251,11 @@ class PlatformTable(BaseTable): name = tables.LinkColumn(verbose_name='Name') device_count = tables.Column(verbose_name='Devices') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=PLATFORM_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=PLATFORM_ACTIONS, attrs={'td': {'class': 'text-right'}}, verbose_name='') class Meta(BaseTable.Meta): model = Platform - fields = ('pk', 'name', 'device_count', 'slug', 'edit') + fields = ('pk', 'name', 'device_count', 'slug', 'actions') # diff --git a/netbox/ipam/tables.py b/netbox/ipam/tables.py index 30e383666..19c139e9d 100644 --- a/netbox/ipam/tables.py +++ b/netbox/ipam/tables.py @@ -6,8 +6,10 @@ from utilities.tables import BaseTable, ToggleColumn from .models import Aggregate, IPAddress, Prefix, RIR, Role, VLAN, VLANGroup, VRF -RIR_EDIT_LINK = """ -{% if perms.ipam.change_rir %}Edit{% endif %} +RIR_ACTIONS = """ +{% if perms.ipam.change_rir %} + +{% endif %} """ UTILIZATION_GRAPH = """ @@ -15,8 +17,10 @@ UTILIZATION_GRAPH = """ {% utilization_graph record.get_utilization %} """ -ROLE_EDIT_LINK = """ -{% if perms.ipam.change_role %}Edit{% endif %} +ROLE_ACTIONS = """ +{% if perms.ipam.change_role %} + +{% endif %} """ PREFIX_LINK = """ @@ -43,9 +47,9 @@ STATUS_LABEL = """ {% endif %} """ -VLANGROUP_EDIT_LINK = """ +VLANGROUP_ACTIONS = """ {% if perms.ipam.change_vlangroup %} - Edit + {% endif %} """ @@ -85,11 +89,11 @@ class RIRTable(BaseTable): name = tables.LinkColumn(verbose_name='Name') aggregate_count = tables.Column(verbose_name='Aggregates') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=RIR_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=RIR_ACTIONS, attrs={'td': {'class': 'text-right'}}, verbose_name='') class Meta(BaseTable.Meta): model = RIR - fields = ('pk', 'name', 'aggregate_count', 'slug', 'edit') + fields = ('pk', 'name', 'aggregate_count', 'slug', 'actions') # @@ -120,11 +124,11 @@ class RoleTable(BaseTable): prefix_count = tables.Column(accessor=Accessor('count_prefixes'), orderable=False, verbose_name='Prefixes') vlan_count = tables.Column(accessor=Accessor('count_vlans'), orderable=False, verbose_name='VLANs') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=ROLE_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=ROLE_ACTIONS, attrs={'td': {'class': 'text-right'}}, verbose_name='') class Meta(BaseTable.Meta): model = Role - fields = ('pk', 'name', 'prefix_count', 'vlan_count', 'slug', 'edit') + fields = ('pk', 'name', 'prefix_count', 'vlan_count', 'slug', 'actions') # @@ -199,11 +203,12 @@ class VLANGroupTable(BaseTable): site = tables.LinkColumn('dcim:site', args=[Accessor('site.slug')], verbose_name='Site') vlan_count = tables.Column(verbose_name='VLANs') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=VLANGROUP_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=VLANGROUP_ACTIONS, attrs={'td': {'class': 'text-right'}}, + verbose_name='') class Meta(BaseTable.Meta): model = VLANGroup - fields = ('pk', 'name', 'site', 'vlan_count', 'slug', 'edit') + fields = ('pk', 'name', 'site', 'vlan_count', 'slug', 'actions') # diff --git a/netbox/secrets/tables.py b/netbox/secrets/tables.py index 60db5e708..2fb6d9bbe 100644 --- a/netbox/secrets/tables.py +++ b/netbox/secrets/tables.py @@ -6,9 +6,9 @@ from utilities.tables import BaseTable, ToggleColumn from .models import SecretRole, Secret -SECRETROLE_EDIT_LINK = """ +SECRETROLE_ACTIONS = """ {% if perms.secrets.change_secretrole %} - Edit + {% endif %} """ @@ -22,11 +22,12 @@ class SecretRoleTable(BaseTable): name = tables.LinkColumn(verbose_name='Name') secret_count = tables.Column(verbose_name='Secrets') slug = tables.Column(verbose_name='Slug') - edit = tables.TemplateColumn(template_code=SECRETROLE_EDIT_LINK, verbose_name='') + actions = tables.TemplateColumn(template_code=SECRETROLE_ACTIONS, attrs={'td': {'class': 'text-right'}}, + verbose_name='') class Meta(BaseTable.Meta): model = SecretRole - fields = ('pk', 'name', 'secret_count', 'slug', 'edit') + fields = ('pk', 'name', 'secret_count', 'slug', 'actions') #