Skip to content

Commit

Permalink
fix description of buy now
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Oct 19, 2024
1 parent 518dc67 commit c973d79
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 @@ -639,7 +639,7 @@ class Auction(models.Model):
("required", "Required for all lots"),
)
buy_now = models.CharField(max_length=20, choices=BUY_NOW_CHOICES, default="allow")
buy_now.help_text = "Allow lots to be sold without bidding, for a user-specified price. If required with bidding disabled, people will only buy now and won't be able to bid against each other."
buy_now.help_text = "Allow lots to be sold without bidding, for a user-specified price."
RESERVE_CHOICES = (
("disable", "Don't allow"),
("allow", "Allow"),
Expand Down

0 comments on commit c973d79

Please sign in to comment.