Fixed syntax error in analytics.html

This commit is contained in:
Tom Price
2015-03-13 15:28:34 +00:00
parent 52fb9e17fe
commit 8aeeb31491
2 changed files with 2 additions and 2 deletions

View File

@@ -386,4 +386,4 @@ class Payment(models.Model):
invoice = models.ForeignKey('Invoice')
date = models.DateField()
amount = models.DecimalField(max_digits=10, decimal_places=2, help_text='Please use ex. VAT')
method = models.CharField(max_length=2, choices=METHODS, null=True, blank=True)
method = models.CharField(max_length=2, choices=METHODS, null=True, blank=True)