From eb07af9c3955e6328da4868c5626ce5ff251887e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Mon, 18 Mar 2019 13:06:34 +0100 Subject: [PATCH] Add a note about the format for invoice dates for expenses and revnues. Fix #292. --- src/economy/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/economy/models.py b/src/economy/models.py index a2eb6531..f1d28dff 100644 --- a/src/economy/models.py +++ b/src/economy/models.py @@ -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, )