Add a note about the format for invoice dates for expenses and revnues. Fix #292.
This commit is contained in:
parent
0611da1645
commit
eb07af9c39
|
@ -46,7 +46,7 @@ class Revenue(CampRelatedModel, UUIDModel):
|
|||
)
|
||||
|
||||
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,
|
||||
null=True,
|
||||
)
|
||||
|
@ -169,7 +169,7 @@ class Expense(CampRelatedModel, UUIDModel):
|
|||
)
|
||||
|
||||
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,
|
||||
null=True,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue