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
|
<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-related-questions"
tal:define="questions context/related_questions"
tal:condition="questions">
<h2>Related questions</h2>
<div class="portletBody">
<ul>
<li class="question-row" tal:repeat="question questions">
<tal:description
define="global description question/description/fmt:obfuscate-email/fmt:shorten/100" />
<a tal:attributes="href question/fmt:url;
title description"
tal:content="string:#${question/id} ${question/title}"
class="sprite question"># Title</a>
</li>
</ul>
</div>
</div>
|