Skip to content

Commit

Permalink
change date end help_text
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 7, 2024
1 parent aa43c6b commit 6027f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auctions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ class Auction(models.Model):
lot_submission_start_date.help_text = "Users can submit (but not bid on) lots on this date"
lot_submission_end_date = models.DateTimeField("Lot submission ends", null=True, blank=True)
date_end = models.DateTimeField("Bidding end date", blank=True, null=True)
date_end.help_text = "Bidding will end on this date. If last-minute bids are placed, bidding can go up to 1 hour past this time on those lots. Note: This will not change the end date of existing lots."
date_end.help_text = "Bidding will end on this date. If last-minute bids are placed, bidding can go up to 1 hour past this time on those lots."
watch_warning_email_sent = models.BooleanField(default=False)
invoiced = models.BooleanField(default=False)
created_by = models.ForeignKey(User, null=True, blank=True, on_delete=models.SET_NULL)
Expand Down

0 comments on commit 6027f87

Please sign in to comment.