Display pointing docs in a list, not on a single line (#776)

This commit is contained in:
Frédéric Péters 2011-10-24 16:14:42 +02:00
parent 989dee6ad0
commit 88ff1e32a4
1 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,11 @@
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
tal:omit-tag="">
<span tal:repeat="item view/pointing_docs">
<ul tal:condition="view/pointing_docs">
<li tal:repeat="item view/pointing_docs">
<a tal:attributes="href item/from_path">
<span class="selected-option" tal:content="item/from_object/Title" />
</a><tal:block condition="not:repeat/item/end">, </tal:block>
</span>
</a>
</li>
</ul>
</html>