-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10710 from Johnetordoff/fix-preprint-emails
[ENG-6138] Update Language for Preprint Resubmission Emails
- Loading branch information
Showing
3 changed files
with
44 additions
and
37 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
75 changes: 39 additions & 36 deletions
75
website/templates/emails/reviews_resubmission_confirmation.html.mako
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,39 +1,42 @@ | ||
## -*- coding: utf-8 -*- | ||
<div style="margin: 40px;"> | ||
<p>Hello ${referrer.fullname},</p> | ||
<p> | ||
The ${document_type} | ||
<a href="${reviewable.absolute_url}">${reviewable.title}</a> | ||
has been successfully re-submitted to ${reviewable.provider.name}. | ||
</p> | ||
<p> | ||
${reviewable.provider.name} has chosen to moderate their submissions using a | ||
pre-moderation workflow, which means your submission is pending until accepted | ||
by a moderator. | ||
<%inherit file="notify_base.mako"/> | ||
<%def name="content()"> | ||
<div style="margin: 40px;"> | ||
<p> | ||
Hello ${referrer.fullname}, | ||
</p> | ||
<p> | ||
The ${document_type} <a href="${reviewable.absolute_url}">${reviewable.title}</a> has been successfully | ||
resubmitted to ${reviewable.provider.name}. | ||
</p> | ||
<p> | ||
${reviewable.provider.name} has chosen to moderate their submissions using a pre-moderation workflow, which | ||
means your submission is pending until accepted by a moderator. | ||
% if not no_future_emails: | ||
You will receive a separate notification informing you of any status changes. | ||
% endif | ||
</p> | ||
<p> | ||
You will ${'not receive ' if no_future_emails else 'be automatically subscribed to '}future | ||
notification emails for this ${document_type}. | ||
</p> | ||
<p> | ||
If you have been erroneously associated with "${reviewable.title}", then you | ||
may visit the ${document_type}'s "Edit" page and remove yourself as a contributor. | ||
</p> | ||
<p> | ||
For more information about ${reviewable.provider.name}, visit | ||
<a href="${provider_url}">${provider_url}</a> to learn more. To learn about the | ||
Open Science Framework, visit <a href="https://osf.io/">https://osf.io/</a>. | ||
</p> | ||
<p>For questions regarding submission criteria, please email ${provider_contact_email}</p> | ||
<br> | ||
Sincerely,<br> | ||
Your ${reviewable.provider.name} and OSF teams | ||
<p> | ||
Center for Open Science<br> | ||
210 Ridge McIntire Road, Suite 500, Charlottesville, VA 22903 | ||
</p> | ||
<a href="https://github.com/CenterForOpenScience/cos.io/blob/master/PRIVACY_POLICY.md">Privacy Policy</a> | ||
</div> | ||
</p> | ||
<p> | ||
You will ${'not receive ' if no_future_emails else 'be automatically subscribed to '}future notification emails | ||
for this ${document_type}. | ||
</p> | ||
<p> | ||
If you have been erroneously associated with "${reviewable.title}", then you may visit the ${document_type}'s | ||
"Edit" page and remove yourself as a contributor. | ||
</p> | ||
<p> | ||
For more information about ${reviewable.provider.name}, visit <a href="${provider_url}">${provider_url}</a> to | ||
learn more. To learn about the Open Science Framework, visit <a href=" "> </a>. | ||
</p> | ||
<p> | ||
For questions regarding submission criteria, please email ${provider_contact_email} | ||
</p> | ||
<br> | ||
Sincerely, | ||
<br> | ||
Your ${reviewable.provider.name} and OSF teams | ||
<p> | ||
Center for Open Science<br> 210 Ridge McIntire Road, Suite 500, Charlottesville, VA 22903 | ||
</p> | ||
<a href="https://github.com/CenterForOpenScience/cos.io/blob/master/PRIVACY_POLICY.md">Privacy Policy</a> | ||
</div> | ||
</%def> |