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

Fixed cable list display for circuit terminations

This commit is contained in:
Jeremy Stretch
2018-11-01 14:14:31 -04:00
parent 1119209fa0
commit 623de7d210
4 changed files with 27 additions and 18 deletions

View File

@@ -264,7 +264,7 @@ class CircuitTermination(CableTermination):
unique_together = ['circuit', 'term_side']
def __str__(self):
return '{} (Side {})'.format(self.circuit, self.get_term_side_display())
return 'Side {}'.format(self.get_term_side_display())
def log_change(self, user, request_id, action):
"""