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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
metal:use-macro="view/macro:page/main_only"
i18n:domain="launchpad">
<body>
<div metal:fill-slot="main">
<div metal:use-macro="context/@@launchpad_form/form">
<metal:extra-info fill-slot="extra_info">
<p>
Launchpad's record for <span tal:replace="context/displayname" /> was
created
<span
tal:attributes="title context/datecreated/fmt:datetime"
tal:content="context/datecreated/fmt:displaydate" />
<tal:user-created
condition="context/creation_rationale/enumvalue:USER_CREATED">
by <a tal:attributes="href context/registrant/fmt:url">
<span tal:replace="context/registrant/displayname">Foo</span></a>,
and the reason given by that user for its creation is:
<em tal:content="structure context/creation_comment/fmt:text-to-html">
reason
</em>
</tal:user-created>
<tal:not-user-created
condition="not: context/creation_rationale/enumvalue:USER_CREATED">
<span tal:replace="context/creation_comment" />.
</tal:not-user-created>
</p>
<p>
If you're <span tal:replace="context/displayname" />, relax! You don't
need to do anything, and we'll never spam you. But claiming this
profile will let you edit your contact details, register your own
projects and code branches in Launchpad, and use Launchpad to
<strong>collaborate with other developers</strong>.
</p>
<p>
To claim the profile, enter one of the e-mail addresses it is
associated with. (We're not showing you the list of addresses to
protect <span tal:replace="context/displayname" />'s privacy in case
you’re someone else.) We'll e-mail that address to ask your confirmation.
</p>
</metal:extra-info>
</div>
</div>
</body>
</html>
|