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
|
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xml:lang="en"
lang="en"
dir="ltr"
metal:use-macro="context/@@unlinkbugs_template/master"
>
<body>
<div metal:fill-slot="extra_info" class="documentDescription">
<div><a href="/bugs/cve">CVE reports</a>:</div>
<div>
<a tal:attributes="href context/fmt:url">CVE
<tal:num replace="context/sequence">CVE-1234-5678</tal:num></a>
</div>
<div>
This will <em>remove</em> the link between
<span tal:replace="context/displayname">CVE-1999-1234</span> and
the selected bug reports.
</div>
</div>
</body>
</html>
|