summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pgweb/contributors/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pgweb/contributors/models.py b/pgweb/contributors/models.py
index 3359fb76..7ccf5748 100644
--- a/pgweb/contributors/models.py
+++ b/pgweb/contributors/models.py
@@ -12,7 +12,7 @@ class ContributorType(models.Model):
def __unicode__(self):
return self.typename
-
+
class Meta:
ordering = ('sortorder',)
@@ -32,6 +32,6 @@ class Contributor(models.Model):
def __unicode__(self):
return "%s %s" % (self.firstname, self.lastname)
-
+
class Meta:
ordering = ('lastname', 'firstname',)