Skip to content

Commit

Permalink
fix: Addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Oct 28, 2024
1 parent fbed27d commit 4e1eb07
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions fundraising/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ class DonateForm(forms.Form):
"""

AMOUNT_CHOICES = (
(25, "US $25"),
(50, "US $50"),
(100, "US $100"),
(250, "US $250"),
(500, "US $500"),
(750, "US $750"),
(1000, "US $1,000"),
(1250, "US $1,250"),
(2500, "US $2,500"),
(25, _("US $25")),
(50, _("US $50")),
(100, _("US $100")),
(250, _("US $250")),
(500, _("US $500")),
(750, _("US $750")),
(1000, _("US $1,000")),
(1250, _("US $1,250")),
(2500, _("US $2,500")),
("custom", _("Other amount")),
)

Expand Down

0 comments on commit 4e1eb07

Please sign in to comment.