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
|
<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">
<table id="recipetable" class="listing sortable">
<thead>
<tr>
<th colspan="2">Name</th>
<th tal:condition="view/owner_enabled">Owner</th>
<th tal:condition="view/branch_enabled">Base Branch</th>
<th>Registered</th>
</tr>
</thead>
<tbody>
<tal:recipes repeat="recipe context/recipes">
<tr>
<td colspan="2">
<a tal:attributes="href recipe/fmt:url"
tal:content="recipe/name">Recipe name</a>
</td>
<td tal:condition="view/owner_enabled">
<a tal:replace="structure recipe/owner/fmt:link">
Owner
</a>
</td>
<td tal:condition="view/branch_enabled">
<a tal:replace="structure recipe/base_branch/fmt:link">
Branch
</a>
</td>
<td tal:content="recipe/date_created/fmt:datetime" />
</tr>
</tal:recipes>
</tbody>
</table>
</div>
</body>
</html>
|