|
@@ -247,6 +247,9 @@ class Antenna(models.Model):
|
|
|
class Route(models.Model):
|
|
|
name = models.CharField(max_length=64, unique=True)
|
|
|
|
|
|
+ class Meta:
|
|
|
+ ordering = ['name']
|
|
|
+
|
|
|
def get_ip(self):
|
|
|
allocations = self.allocations.filter(get_active_filter())
|
|
|
return allocations.values_list('resource', flat=True)
|