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
|
<div
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
class="portlet" id="portlet-publishing-details">
<h2>
"<tal:name replace="context/name">apache2</tal:name>"
versions published in
<tal:distribution replace="context/distribution/name/capitalize">
ubuntu
</tal:distribution>
</h2>
<div class="portletBody portletContent"
tal:define="cr context/currentrelease">
<div tal:condition="context/current_publishing_records">
<tal:block repeat="item view/all_published_in_active_distroseries">
<b><tal:suite replace="item/suite"/></b>
<tal:description replace="item/description"/>
<br/>
</tal:block>
</div>
<div tal:condition="not: context/current_publishing_records">
This source is not published in
<tal:name replace="context/distribution/name/capitalize"/>
</div>
</div>
</div>
|