Send emails to members in ID order

This commit is contained in:
Yingtong Li 2019-03-05 20:17:14 +11:00
parent 0b4af7e40f
commit 72f934db70
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,9 @@ class Member(models.Model):
expires = models.DateField()
class Meta:
ordering = ['id']
def __str__(self):
return self.first_name + ' ' + self.last_name