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
|
<metal:header
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:tal="http://xml.zope.org/namespaces/tal"
define-macro="listing-summary">
<tal:comment replace="nothing">
This macro expects the following variables defined:
:series_name: The DistroSeries/DistroArchSeries name
:series_url: The DistroSeries/DistroArchSeries link
:version_name: The version string
:version_url: The version link
</tal:comment>
<tr>
<td style="white-space: nowrap">
<span tal:attributes="id string:pub${context/id}-expander"
class="expander-icon"> </span>
</td>
<td tal:content="view/date_last_changed/fmt:datetime"
>2005-08-24</td>
<td tal:content="context/status/title">Published</td>
<td>
<a tal:attributes="href series_url"
tal:content="series_name">warty</a>
</td>
<td tal:content="context/pocket/title/fmt:lower">Release</td>
<td tal:content="context/component/name">main</td>
<td tal:content="context/section/name">web</td>
<td>
<a tal:content="version_name"
tal:attributes="href version_url"
>2.0.39</a>
</td>
</tr>
<tr tal:attributes="id string:pub${context/id}">
<td colspan="8">
<tal:block replace="structure context/@@+record-details" />
</td>
</tr>
</metal:header>
|