Fix typo in payment source model

This commit is contained in:
fnux 2020-02-27 12:21:52 +01:00
parent b9b605f407
commit 225f20c91b

View file

@ -86,7 +86,7 @@ class Payment(models.Model):
source = models.CharField(max_length=256, source = models.CharField(max_length=256,
choices = ( choices = (
('wire', 'Wire Transfer'), ('wire', 'Wire Transfer'),
('strip', 'Stripe'), ('stripe', 'Stripe'),
('voucher', 'Voucher'), ('voucher', 'Voucher'),
('referral', 'Referral'), ('referral', 'Referral'),
('unknown', 'Unknown') ('unknown', 'Unknown')