clarify that expense amount can be negative

This commit is contained in:
Thomas Steen Rasmussen 2018-09-01 09:56:22 +02:00
parent 4c124a978d
commit 4123c2eb91
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class Expense(CampRelatedModel, UUIDModel):
amount = models.DecimalField(
decimal_places=2,
max_digits=12,
help_text='The amount of this expense in DKK. Must match the amount on the invoice uploaded below.',
help_text='The amount of this expense in DKK. Must match the amount on the invoice uploaded below. The amount can be negative in some cases (like when returning bottle deposit).',
)
description = models.CharField(