Skip to content

Commit

Permalink
Merge pull request #304 from hackupc/TravelLimit
Browse files Browse the repository at this point in the history
Reimbursement limit changed
  • Loading branch information
AdriMM26 committed Mar 10, 2024
2 parents 4f29c69 + 14afaab commit 0177747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/models/hacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class HackerApplication(
reimb = models.BooleanField(default=False)
reimb_amount = models.FloatField(blank=True, null=True, validators=[
MinValueValidator(0, "Negative? Really? Please put a positive value"),
MaxValueValidator(150.0, "Not that much")])
MaxValueValidator(200.0, "Do not exceed the maximum amount of 200")])

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

0 comments on commit 0177747

Please sign in to comment.