Skip to content

Commit 14afaab

Browse files
committed
Reimbursement limit changed
1 parent 4f29c69 commit 14afaab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: applications/models/hacker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class HackerApplication(
5050
reimb = models.BooleanField(default=False)
5151
reimb_amount = models.FloatField(blank=True, null=True, validators=[
5252
MinValueValidator(0, "Negative? Really? Please put a positive value"),
53-
MaxValueValidator(150.0, "Not that much")])
53+
MaxValueValidator(200.0, "Do not exceed the maximum amount of 200")])
5454

5555
# Info for hardware
5656
hardware = models.CharField(max_length=300, null=True, blank=True)

0 commit comments

Comments
 (0)