Browse Source

trie alphabétique des tunnels

Élie Bouttier 6 years ago
parent
commit
47ccf90d5d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      services/models.py

+ 3 - 0
services/models.py

@@ -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)