Skip to content

Commit

Permalink
Made copy changes to re-market success msg at the request of @Pixelan…
Browse files Browse the repository at this point in the history
  • Loading branch information
vince0656 committed Aug 1, 2019
1 parent 2d0acaa commit 163b255
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/dashboard/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1580,11 +1580,11 @@ def helper_handle_remarket_trigger(request, bounty):
maybe_market_to_slack(bounty, 'issue_remarketed')

further_permitted_remarket_count = 2 - bounty.remarketed_count
success_msg = "The bounty has been remarketed! "
success_msg = "This issue has been remarketed. The issue will appear at the top of the issue explorer. "
if further_permitted_remarket_count == 1:
success_msg = success_msg + "You can do this 1 further time after waiting at least an hour."
success_msg = success_msg + "You will be able to remarket this bounty one more time if a contributor does not pick this up."
elif further_permitted_remarket_count == 0:
success_msg = success_msg + "You cannot remarket this bounty any further."
success_msg = success_msg + "Please note this is the last time the issue is able to be remarketed."

messages.success(request, _(success_msg))

Expand Down

0 comments on commit 163b255

Please sign in to comment.