forked from CenterForOpenScience/osf.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollection_submission_removed_private.html.mako
More file actions
40 lines (40 loc) · 1.8 KB
/
collection_submission_removed_private.html.mako
File metadata and controls
40 lines (40 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<%inherit file="notify_base.mako" />
<%def name="content()">
<tr>
<td style="border-collapse: collapse;">
Hello ${user_fullname},<br>
<br>
<p>
% if is_admin:
You have changed the privacy of <a href="${node_absolute_url}">${node_title}</a> and it has therefore been
removed from
% if collection_provider:
<a href="${domain + 'collections/' + collection_provider__id}">${collection_provider_name}</a>
% else:
<a href="${domain + 'my-projects/'}">${collection_provider_name}</a>
% endif
. If you wish to be associated with the collection, you will need to request addition to the collection again.
% else:
<a href="${remover_absolute_url}">${remover_fullname}</a> has changed the privacy settings for
<a href="${node_absolute_url}">${node_title}</a> it has therefore been removed from
% if collection_provider:
<a href="${collections_link}">${collection_provider_name}</a>
% else:
<a href="${domain + 'my-projects/'}">${collection_provider_name}</a>
% endif
It will need to be re-submitted to be included in the collection again.
% endif
</p>
<p>
If you are not ${user_fullname} or you have been erroneously associated with
<a href="${node_absolute_url}">${node_title}</a>, email ${osf_contact_email} with the subject line
"Claiming error" to report the problem.
</p>
Sincerely,<br>
<br>
The OSF Team<br>
<br>
Want more information? Visit https://osf.io/ to learn about OSF, or https://cos.io/ for information about its supporting organization, the Center for Open Science.<br>
<br>
Questions? Email ${osf_contact_email}<br></tr>
</%def>