-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated reserved email to be more scalable
- Loading branch information
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{% load i18n %} | ||
{% trans "Good news! An issue has been reserved for you on gitcoin. Please start working on the issue, in the next 72 hours, before it is opened up for other bounty hunters to try as well. " %} | ||
{% trans "Good news! An issue has been reserved for you on gitcoin. " %} | ||
{% if bounty.total_reserved_length_label == "indefinitely" %} | ||
{% trans "Please start working on the issue and release it to the public if you cannot commit to the work." %} | ||
{% else %} | ||
{% blocktrans with total_reserved_length_label=bounty.total_reserved_length_label %} | ||
Please start working on the issue, within the next {{ total_reserved_length_label }}, before it is opened up for other bounty hunters to try as well. | ||
{% endblocktrans %} | ||
{% endif %} | ||
{% include 'emails/bounty.txt' with bounty=bounty %} | ||
{% trans "As always, if you have questions, please reach out to the project owner!" %} |