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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<tal:root
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
omit-tag="">
<table
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:define-macro="activity-table"
tal:attributes="class string:bug-activity">
<tal:activity-by-target repeat="activity_dict activity_list">
<tal:target define="target activity_dict/target|nothing">
<tr tal:condition="target">
<td colspan="2">Changed in <tal:target content="target" />: </td>
</tr>
</tal:target>
<tr tal:repeat="activity activity_dict/activity">
<td style="text-align: right;">
<b><tal:summary replace="activity/change_summary" /></b>:
</td>
<td>
<tal:details replace="structure activity/change_details" />
</td>
</tr>
</tal:activity-by-target>
</table>
<div
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:define-macro="activity-box"
tal:attributes="class string:boardComment">
<div class="boardCommentDetails">
<tal:activity_has_person>
<tal:activity_person replace="structure activity_person/fmt:link" />
</tal:activity_has_person>
<span
tal:attributes="title activity_date/fmt:datetime"
tal:content="activity_date/fmt:displaydate">
7 minutes ago
</span>
</div>
<div class="boardBugActivityBody">
<metal:activity-table
metal:use-macro="context/@@bugcomment-macros/activity-table" />
</div>
</div>
<div
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:define-macro="break"
tal:attributes="class string:boardComment"
style="border-bottom: 0">
<div class="boardCommentDetails">
<table>
<tbody>
<tr>
<td>
<span class="sprite arrowRight"> </span>
<span tal:replace="num_hidden">42</span> comments hidden
</td>
<td class="bug-comment-index">
<a href="?comments=all"
class="sprite retry"
style="white-space: nowrap">
view all <span
tal:replace="view/total_comments"
/> comments</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</tal:root>
|