diff --git a/netbox/circuits/models.py b/netbox/circuits/models.py index d838d93d2..b2ffb3c09 100644 --- a/netbox/circuits/models.py +++ b/netbox/circuits/models.py @@ -352,7 +352,7 @@ class CircuitTermination(ChangeLoggedModel, CableTermination): unique_together = ['circuit', 'term_side'] def __str__(self): - return str(self.site or self.provider_network) + return f'Termination {self.term_side}: {self.site or self.provider_network}' def get_absolute_url(self): if self.site: