Skip to content

change date end help_text #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading