forked from CenterForOpenScience/osf.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollection_submission_cancel.html.mako
More file actions
40 lines (39 loc) · 1.69 KB
/
collection_submission_cancel.html.mako
File metadata and controls
40 lines (39 loc) · 1.69 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:
The request to add <a href="${node_absolute_url}">${node_title}</a> to
% if collection_provider:
<a href="${collections_link}">${collection_provider_name}</a>
% else:
<a href="${domain + 'my-projects/'}">${collection_provider_name}</a>
% endif
was canceled. If you wish to be associated with the collection, you will need to request to be added again.
% else:
<a href="${remover_absolute_url}">${remover_fullname}</a> canceled the request to add
<a href="${node_absolute_url}">${node_title}</a>to
% if collection_provider:
<a href="${collections_link}">${collection_provider_name}</a>
% else:
<a href="${domain + 'my-projects/'}">${collection_provider_name}</a>
% endif
If you wish to be associated with the collection, an admin will need to request addition 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>