diff --git a/colleges/models.py b/colleges/models.py
index 778b60bec4d1d7c924a5b96f8f7fd2bd0345ed9b..8f42ba603a88cd49aabe6eef763974b56267350f 100644
--- a/colleges/models.py
+++ b/colleges/models.py
@@ -85,6 +85,9 @@ class PotentialFellowship(models.Model):
     status = models.CharField(max_length=32, choices=POTENTIAL_FELLOWSHIP_STATUSES,
                               default=POTENTIAL_FELLOWSHIP_IDENTIFIED)
 
+    class Meta:
+        ordering = ['profile__last_name']
+
     def __str__(self):
         return '%s, %s' % (self.profile.__str__(), self.get_status_display())