Add a note about the format for invoice dates for expenses and revnues. Fix #292.

This commit is contained in:
Víðir Valberg Guðmundsson 2019-03-18 13:06:34 +01:00
parent 0611da1645
commit eb07af9c39

View file

@ -46,7 +46,7 @@ class Revenue(CampRelatedModel, UUIDModel):
) )
invoice_date = models.DateField( invoice_date = models.DateField(
help_text='The invoice date for this Revenue. This must match the invoice date on the documentation uploaded below.', help_text='The invoice date for this Revenue. This must match the invoice date on the documentation uploaded below. Format is YYYY-MM-DD.',
blank=True, blank=True,
null=True, null=True,
) )
@ -169,7 +169,7 @@ class Expense(CampRelatedModel, UUIDModel):
) )
invoice_date = models.DateField( invoice_date = models.DateField(
help_text='The invoice date for this Expense. This must match the invoice date on the documentation uploaded below.', help_text='The invoice date for this Expense. This must match the invoice date on the documentation uploaded below. Format is YYYY-MM-DD.',
blank=True, blank=True,
null=True, null=True,
) )