We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f29c69 + 14afaab commit 0177747Copy full SHA for 0177747
applications/models/hacker.py
@@ -50,7 +50,7 @@ class HackerApplication(
50
reimb = models.BooleanField(default=False)
51
reimb_amount = models.FloatField(blank=True, null=True, validators=[
52
MinValueValidator(0, "Negative? Really? Please put a positive value"),
53
- MaxValueValidator(150.0, "Not that much")])
+ MaxValueValidator(200.0, "Do not exceed the maximum amount of 200")])
54
55
# Info for hardware
56
hardware = models.CharField(max_length=300, null=True, blank=True)
0 commit comments